I have a tomcat web application. It uses a couple of remote modules. One of the modules publishes some messages (about it states) into queue. I need to read it. how can I do it?
As far as I know I need realization of IninialContext to obtain remote queue by name, right? Haven’t found any useful materials on the net.
I have a tomcat web application. It uses a couple of remote modules. One
Share
On this link on activemq site: http://activemq.apache.org/how-should-i-implement-request-response-with-jms.html take a look at class
ServerandClientfor help in writing JMSConsumerandProducer.