Re: Waiting for dependencies

2021-05-11 Thread Claus Ibsen
You need to install camel-netty4-http On Tue, May 11, 2021 at 8:30 AM Mike Oliver wrote: > > I have the following camel context. > > http://camel.apache.org/schema/blueprint";> > > uri="restlet:{{server.protocol}}:{{server.host}}:{{server.port}}{{server.path}}?restletMethod=

Re: Waiting for dependencies

2021-05-11 Thread Michael Oliver
Ok thanks will try that On Tue, May 11, 2021, 3:07 PM Claus Ibsen wrote: > You need to install camel-netty4-http > > On Tue, May 11, 2021 at 8:30 AM Mike Oliver > wrote: > > > > I have the following camel context. > > > > http://camel.apache.org/schema/blueprint";> > > > >

[camel-rabbitmq] - InOut pattern and temporary queues

2021-05-11 Thread FERRY, Guillaume
Hi everyone, I'm developing an application that relies mostly on Camel (3.9.0) and its dedicated RabbitMQ / REST components. My routes are specified in XML (with Spring beans). Here's a simple route : The percolate_queue defined in anothe

Re: [camel-rabbitmq] - InOut pattern and temporary queues

2021-05-11 Thread ski n
When working with a Request-Reply pattern the reply message needs to send to a second reply queue. The InOut pattern mostly goes like this: 1) Producer send request with correlationid to a queue 2) Consumer receives the message and send a reply to the reply queue 3) Producer matches the reply mess

RE: [camel-rabbitmq] - InOut pattern and temporary queues

2021-05-11 Thread FERRY, Guillaume
Hi Raymond, Thanks a lot for this crystal clear answer. I'll let Camel handle theses queues, then ! Best regards, Guillaume. De : ski n Envoyé : mardi 11 mai 2021 15:38 À : users@camel.apache.org Objet : Re: [camel-rabbitmq] - InOut pattern and temporary queues

Re: [camel-rabbitmq] - InOut pattern and temporary queues

2021-05-11 Thread Jean-Baptiste Onofre
Hi Guillaume, Yes, that’s probably the easiest way. To complete a little: - the correlation can be done on the request message id using a temp destination - the correlation can be done on the client ID using physical destinations Most of the time, ReplyTo header contains a physical response dest