Re: Rabbitmq URI

2016-12-07 Thread souciance
If you are trying to send to a rabbitmq exchange you can pass parameters like this: setHeader("rabbitmq.ROUTING_KEY", constant("yourroutingkey"))) Basically they are set as headers. The headers are available on the documentation. You need to set them before the actual .to() part. On Wed, Dec 7, 2

Re: Rabbitmq URI

2016-12-07 Thread kaiser75
Is there a place where I can find some URI samples for RMQ. How are the options passed and the delimiters -- View this message in context: http://camel.465427.n5.nabble.com/Rabbitmq-URI-tp5791070p5791163.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Rabbitmq URI

2016-12-06 Thread souciance
I can send you samples once I am at work. Den 7 dec. 2016 2:00 fm skrev "kaiser75 [via Camel]" < ml-node+s465427n5791163...@n5.nabble.com>: > Is there a place where I can find some URI samples for RMQ. How are the > options passed and the delimiters > > -- > If you r

Re: Rabbitmq URI

2016-12-06 Thread kaiser75
apparently there is no way to explicitly specify the queue name in the URI. So I just mapped my exchange and the queues as direct and that worked, but i'd to create 3 excahnges and map them to each Queue , i'll try the topic mode and the routing key to route and see that way i just need one exchang

Re: Rabbitmq URI

2016-12-06 Thread souciance
You can do that but I don't think that is the recommend way because it will probably only work for the default exchange and not the others as they require a binding. On Tue, Dec 6, 2016 at 12:37 PM, kaiser75 [via Camel] < ml-node+s465427n5791096...@n5.nabble.com> wrote: > apparently there is no w

Re: Rabbitmq URI

2016-12-05 Thread souciance
I would imagine that random queue is the reply-to queue generated because you are trying to send to an exchange and expect a response. I see you have set the pattern to InOnly but normally I set the exchange pattern at route level. By the way have you checked that the routingkey you are using to se