This is strange, I am creating a simple route for picking a message from activemq queue and posting it at another queue using spring configuration. Following is my route and endpoint configuration:
<camelContext id="camelContext" xmlns="http://camel.apache.org/schema/spring"> <route> <from uri="activemq:firstqueue"></from> <to uri="activemq:secondqueue"></to> </route> </camelContext> <bean id="activemq" class="org.apache.activemq.camel.component.ActiveMQComponent"> <property name="brokerURL" value="tcp://localhost:61616" /> </bean> The problem is that message gets picked up using activemq consumer from firstqueue but is not posted in secondqueue. Jetty shows that message had been dequeued. can anyone please suggest -- View this message in context: http://camel.465427.n5.nabble.com/Active-MQ-producer-endpoint-not-working-tp5763297.html Sent from the Camel Development mailing list archive at Nabble.com.