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
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.
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
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
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
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