Re: RabbitMQ set replyTo queue

2021-12-06 Thread V User
Hi Claus, It looks like the spring-rabbitmq feature is set up to use the RabbitMQ "direct reply-to" paradigm ( https://camel.apache.org/components/3.13.x/spring-rabbitmq-component.html#_request_reply), which is not how the target application is implemented (i.e. it is not reading from the

Re: RabbitMQ set replyTo queue

2021-12-04 Thread Claus Ibsen
Hi Can you try with the spring-rabbitmq component On Fri, Dec 3, 2021 at 11:38 PM V User wrote: > > Hello! > > I'm new to Camel and setting up my first flow, an adaptor for an existing > system with an API that uses RabbitMQ. The API already defines a queue to > publish messages to, and a queue

RabbitMQ set replyTo queue

2021-12-03 Thread V User
Hello! I'm new to Camel and setting up my first flow, an adaptor for an existing system with an API that uses RabbitMQ. The API already defines a queue to publish messages to, and a queue where responses will be published back to. I'm trying to get Camel to read replies from the existing queue. I