-
1. Re: How to redeliver transacted message in servicemix?
davsclaus May 7, 2009 2:43 PM (in response to sanjain)Hi
When you configure activemq in the Spring XML file you should also configure connectionFactory, transcated etc.
Basically what you have in the jms bean should be on the activemq bean instead.
jms bean can then be removed.
The activemq:topic endpoint is disovered by Camel and it will look for a component with the name activemq and find this bean in the Spring XML file.
jms is not a special name as such, you could name it webspheremq or what you like.
But again you should combine all the AMQ configuration in the same spring bean = the activemq bean.
-
2. Re: How to redeliver transacted message in servicemix?
pedroneveu May 7, 2009 5:08 PM (in response to sanjain)Hi Sanjay,
In addition to what davsclaus wrote take a read at the Apache Camel docs at http://camel.apache.org/transactional-client.html under Camel 1.x - JMS Sample you'll see that the ActiveMQComponent is where the transactional configuration is done. This might help.
Pedro
-
3. Re: How to redeliver transacted message in servicemix?
sanjain May 8, 2009 1:39 AM (in response to pedroneveu)Thanks guys,
You were absolutely correct. I missed this important piece of configuration and ran in to trouble.
Thanks again, I always got satisfactory answers from fuse forum.
I appreciate a lot for your quick responses.
Ciao!
Sanjay