How to inform statefull session bean about reply msg?
843830Jul 19 2002 — edited Nov 20 2002Hello,
I have a statefull session EJB that send message to a requestQueue. The reply message arrives to a replyQueue. How can I inform this statefull session EJB about message for him?
I try use JMS in MVC architecture- my application based on JavaPetStore app. I like process the events that coming to statefull ShoppingClientControllerEJB asynchronously. SCCEJB use XXXHandler class that must send message and wait the reply. I try use MessageListener in XXXHandler:
QueueListener ql = new QueueListener();
receiver.setMessageListener(ql);
but it doesn�t work.
Can any body help?