Hi Ganesh,
Are you processing the message after receiving in the OnMessage() itself . Or are are you spawning a thread to handle the message processing?
The way i have used it, is to...
Type: Posts; User: Skulkarni; Keyword(s):
Hi Ganesh,
Are you processing the message after receiving in the OnMessage() itself . Or are are you spawning a thread to handle the message processing?
The way i have used it, is to...
Hi Ganesh,
You can try acknowledge as the first step in OnMessage or try the AUTO_ACKNOWLEDGE instead of CLIENT_ACKNOWLEDGE.
Thanks
shishir
Hi Ganesh,
If you are using JMS template and DMLC then did you try setting this property
<property name="sessionAcknowledgeModeName" alue="CLIENT_ACKNOWLEDGE"/>
and in...
Hi,
try this
String queueNm = ((ActiveMQQueue)jmsMsg.getJMSDestination)).getPhysicalName();
and for topic
String topic = ((ActiveMQTopic)jmsMsg.getJMSDestination()).getTopicName();
...
Hi Dennis,
This is my fourth or fifth attempt at trying to reply and every time the post gets filtered at moderation. Anyway I was able to figure out why the problem was occuring. It...
Hi Dennis,
This is my fourth or fifth attempt at trying to reply and every time the post gets filtered at moderation. Anyway I was able to figure out why the problem was occuring. It...
Hi Dennis,
Thanks for looking into the post but I was able to track and fix it. My mistake since I figured that I was instantiating the class twice, one as startup bean and second time...
Hi Denis,
I think I found it, I was using the same class for publishing as well as receiving the message and hence had two beans. One as the startup beand other as messageListener bean. ...
Hi,
I was trying activeMQ with DMLC and got it to work for few topics. But I am facing with a strange scenario where in I have a class member which is a boolean flag and I am setting it after...
Hi,
I was working on trying to integrate spring + activeMQ + jencks using the help available on the net. My requirement is for program to have durable and non durable subscribers on topics and...