I am getting an exception when starting the routes that has ActiveMq component in it. It is complaining about not able te resolve the reply Destination. What setting am i missing ? The exception is: Failed delivery for exchangeId: ID-NCPC5MTVC91-4021-1332260165476-0-6. Exhausted after delivery attempt: 1 caught: org.apache.camel.RuntimeExchangeException: Failed to resolve replyTo destination on the exchange: Exchange[Message: From kpi generator]
My routes look like following: <camelContext id="camel" xmlns="http://camel.apache.org/schema/spring"> <route> <from uri = "netty:tcp://localhost:1556?textline=true" /> <process ref="perProcessor" /> <to uri = "bean:perParserBean" /> <multicast> <to uri = "bean:kpiGeneratorBean" /> <pipeline> <to uri = "activeMq:queue:internal" /> <to uri = "bean:xdrWriterBean" /> </pipeline> </multicast> </route> <route> <from uri = "bean:kpiGeneratorBean" /> <to uri = "activeMq:queue:internal"/> <to uri = "bean:xdrWriterBean"/> </route> </camelContext> -- View this message in context: http://camel.465427.n5.nabble.com/Apache-Camel-ActiveMq-tp5580552p5580552.html Sent from the Camel - Users mailing list archive at Nabble.com.