[color=darkblue][size=12]Hi, I deployed an MDB a few days ago on weblogic and created a simple
java client that produced message and the MDB consumed it.
The code available on the internet is for creating message producers and consumers using JMS API which is not what you want.
Following are the steps which you need to do for what you want -
1. Create an MDB (a born message consumer).
2. Make sure that it implements MessageListener interface in addition to MessageDrivenBean interface.
3. Write your code (for what you want to do with the messsage received by the MDB)
in the onMessage(Message m) method. For example -
4. If you want your MDB to talk with the client which sent the message(which is what MDB's are not made for)
you can write JMS producer code also, in the onMessage method.
5. Create a ConnectionFactory and a Queue(or Topic) in your JMS server (provided by
J2EE app server).
(In weblogic I created JMS server and a ConnectionFactory and a Queue using admin console)
6. In deployment descriptor add entries for JNDI names of the ConnectionFactory and the Queue.
7. Deploy the bean.
8. Create a message producer client by using the standard JMS api as,
9. If you want this client to recieve back the message, create a message consumer also, code is pretty similar to that shown above for creating a message producer.
10. I needed wlclient.jar (in the classpath) since i did it in weblogic. For other servers the jar file and the second argument in the statements,
will change.
11. In above code, piyush.connectionfactory and piyush.testmessagequeue are JNDI names of the resources created on the JMS server.
Try doing that. Hope it would help.
[/size] [/color]