Re: Camel jms - In Out Pattern

2016-05-19 Thread Adarsh_GU
The issue was while using *inout pattern with this mockresponse route* to poll mock response to response quee. Now I tried with polling some response to response queue first, then i removed above route . In this case request response is wor

Camel jms - Custom Message ID

2016-05-19 Thread Adarsh_GU
Hi Guys, Is there is any option to override *JMS message id * gernerated by camel,while using camel jms component? I have simple route pushes data to queue testQueue / / and saw message id from active mq console as follows /*Message ID* ID:ICB1864-53042-1463651730680-1:1:1

Camel jms Request reply -scenario with separate queues for request and response

2016-05-18 Thread Adarsh_GU
Hi Guys, I have 2 queues provided by third party provider 1.request queue, 2.reply queue using camel jms i will send request to request queue, so third party provider will push respective response to response queue. I would to make these calls synchronous. so for each request send to request qu

Re: Camel jms - In Out Pattern

2016-05-18 Thread Adarsh_GU
The third party provider will give response only in their response quee, thats why i set replyTo as their response queue name.(instead of temp queue), >From queue console i have observed that while configuring request response basically i have 2 queues from third party.one for sending request an

Camel jms - In Out Pattern

2016-05-18 Thread Adarsh_GU
Hi, iam new to camel,Im trying to implement a synchronous request-reply mechanism using camel component. I have 2 wmq queues *1. requestQuee - application will send requests to this queue 2. responseQueue - application will have to listen & receive response from this queue * /