Hello, I am trying to do a simple use case to test camel-amqp. Gladly activemq 5.8 has the support for AMQP.
How can I specify the connection settings for connecting to ActiveMQ using camel-amqp ? Please find my route below, I think there should be a right way to configure AMQP. <camelContext id="camel" xmlns="http://camel.apache.org/schema/spring"> <route> <from uri="activemq1:queue:input" /> <to uri="activemq2:queue:outamqp" /> </route> </camelContext> <bean id="activemq2" class="org.apache.activemq.camel.component.ActiveMQComponent"> <property name="brokerURL" value="tcp://localhost:5672"/> </bean> * <bean id="activemq1" class="org.apache.activemq.camel.component.ActiveMQComponent"> <property name="brokerURL" value="tcp://localhost:61616"/> </bean>* Regards Guru @gnanagurus -- View this message in context: http://camel.465427.n5.nabble.com/Camel-AMQP-connection-factory-tp5730305.html Sent from the Camel - Users mailing list archive at Nabble.com.