I have setup a RabbitMQ instance with a couple of queues. DATAPOINTS and HOLDING. I have a Web Service which puts messages on the DATAPOINTS queue. I want to define a camel route that takes the messages from the DATAPOINTS queue and adds them to the HOLDING queue. I have started my executable with the Camel Route and see no errors, but I don't see the messages being taken off the DATAPOINTS queue. Can somebody please tell me if I am doing something wrong.
My route is defined as <routes xmlns="http://camel.apache.org/schema/spring"> <route id="SOAP Datapoint Service"> <from uri="rabbitmq://localhost:5672/amq.direct?queue=DATAPOINTS&routingKey=DATAPOINTS&BridgeEndpoint=true&username=guest&password=guest"/> <to uri="rabbitmq://localhost:5672/amq.direct?queue=HOLDING&routingKey=HOLDING&username=guest&password=guest"/> </route> </routes> I have bound the queues to the amq.direct exchange and defined the routing keys as I saw that Camel didn't current support the default exchange: https://issues.apache.org/jira/browse/CAMEL-8270 Thanks in advance, Paul -- View this message in context: http://camel.465427.n5.nabble.com/Camel-2-15-2-and-RabbitMq-3-5-1-tp5767143.html Sent from the Camel - Users mailing list archive at Nabble.com.
