Hi Willem,
Thanks for your reply. Yes, true, another route is needed to pick up the
message.
However, will the camel route that is sending the message to the exchange be
listening on the reply to queue? So if a message is published on the reply
to queue, then the sending camel route, will pick it
If you want to just use camel to implement the RPC invocation, you have to
setup another route to pick up the RPC invocation and send out the response
just like this
from(“rabbitmq://”)…
Camel won’t pick up the message from the request queue without setting up the
route just like that.
-