you can use JMS producer/consumer pair, on consumer use jms transaction and persistency (persistency is enabled by default), when you fail to deliver message then transaction is rolled back and can be retried according to redelivery policy (you can configure it in activemq.xml), what protocol do you use to communicate with target system? I assume that is not JMS because then persistent queue would be enough, so if it's http you could do something like this: JMS Producer -> JMS consumer -> HTTP provider so if target system is down HTTP provider will throw fault and the JMS transation should be rolled back and then retried
umiii_email-apache wrote: > > Hi all, > > I'm using ServiceMix 3.2.2. I want to configure the Servicemix > to re-send the messages, so that even if the "Message-Receiver System" is > down for a while, it can receive the re-sent message from servicemix at > regular intervals. > So, please help me out in solving this. Any kind of > information/solution/discussion welcome. > > > > Thanks & Regards > > umiii > > > Add more friends to your messenger and enjoy! Go to > http://messenger.yahoo.com/invite/ > > -- View this message in context: http://www.nabble.com/How-to-configure-the-ServiceMix-to-resend-the-messages--tp20420010p20479724.html Sent from the ServiceMix - User mailing list archive at Nabble.com.
