Re: Looking for some advice
Not sure if weblogic has these libraries by default, but these are the dependencies that I use on one of my projects managed by maven.
Code:
<dependency>
<groupId>com.sun.messaging.mq</groupId>
<artifactId>imq</artifactId>
<version>4.3</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.sun.messaging.mq</groupId>
<artifactId>jms</artifactId>
<version>4.3</version>
<scope>provided</scope>
</dependency>
Note the scope. I deploy to either jetty or glassfish (and in either case I have them setup to use the metro stack which also I believe has MQ processing there).
The framework can handle all this for you. the idea is that you have someone post to a 'topic' the data you want (and I am almost positive that JMS can handle binary data as the payload to a message). From here you would have one or many subscribers to the topic who would receive an event once a post was found on that topic.
Of course you could use any one you want. Apache has a nice MQ stack that I tried at one point, but decided against it to stick under the umbrella as much as possible.
http://activemq.apache.org/