Apache Camel - war project How to process the Queue and set to another queue?

2013-09-30 Thread kosalads
let me know how we can handle above scenario and what is the best way to handle this. -- View this message in context: http://camel.465427.n5.nabble.com/Apache-Camel-war-project-How-to-process-the-Queue-and-set-to-another-queue-tp5740524.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Apache Camel - war project How to process the Queue and set to another queue?

2013-09-30 Thread Claus Ibsen
route to the outQ. So when I try to read from the outQ the queue > is empty. > > Could you please let me know how we can handle above scenario and what is > the best way to handle this. > > > > > -- > View this message in context: > http://camel.465427.n5.nabble

Re: Apache Camel - war project How to process the Queue and set to another queue?

2013-09-30 Thread kosalads
Hi, This is for internal Applications and those Objects are serialized and using the same class in the both side. Provided that above scenario how can I achieve this? -- View this message in context: http://camel.465427.n5.nabble.com/Apache-Camel-war-project-How-to-process-the-Queue-and

Re: Apache Camel - war project How to process the Queue and set to another queue?

2013-09-30 Thread James Carman
://camel.465427.n5.nabble.com/Apache-Camel-war-project-How-to-process-the-Queue-and-set-to-another-queue-tp5740524p5740530.html > Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Apache Camel - war project How to process the Queue and set to another queue?

2013-09-30 Thread kosalads
transfer this Object through Camel ActiveMQ? Appreciate your thoughts on this. Thanks in advance. -- View this message in context: http://camel.465427.n5.nabble.com/Apache-Camel-war-project-How-to-process-the-Queue-and-set-to-another-queue-tp5740524p5740554.html Sent from the Camel - Users

Re: Apache Camel - war project How to process the Queue and set to another queue?

2013-09-30 Thread James Carman
t, If I have a once Java class which I can add all the objects > then it is easy to transfer this Object through Camel ActiveMQ? Appreciate > your thoughts on this. > > > Thanks in advance. > > > > -- > View this message in context: > http://camel.465427.n

Re: Apache Camel - war project How to process the Queue and set to another queue?

2013-09-30 Thread kosalads
Hi James, So how do we handle the below scenario with Camel? -- View this message in context: http://camel.465427.n5.nabble.com/Apache-Camel-war-project-How-to-process-the-Queue-and-set-to-another-queue-tp5740524p5740574.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Apache Camel - war project How to process the Queue and set to another queue?

2013-10-01 Thread James Carman
xt: > http://camel.465427.n5.nabble.com/Apache-Camel-war-project-How-to-process-the-Queue-and-set-to-another-queue-tp5740524p5740574.html > Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Apache Camel - war project How to process the Queue and set to another queue?

2013-10-03 Thread Andreas Gies
be route to the outQ. So when I try to read from the outQ the queue is empty. Could you please let me know how we can handle above scenario and what is the best way to handle this. -- View this message in context: http://camel.465427.n5.nabble.com/Apache-Camel-war-project-How-to-process-the-

Re: Apache Camel - war project How to process the Queue and set to another queue?

2013-10-03 Thread James Carman
another application which reads the outQ and try to retrieve >> Bean Object. >> >> So what happens is that I could send the Pojo bean to the inQ but it >> doesnt >> seems to be route to the outQ. So when I try to read from the outQ the >> queue >> is empty. >> >> Could you please let me know how we can handle above scenario and what is >> the best way to handle this. >> >> >> >> >> -- >> View this message in context: >> http://camel.465427.n5.nabble.com/Apache-Camel-war-project-How-to-process-the-Queue-and-set-to-another-queue-tp5740524.html >> Sent from the Camel - Users mailing list archive at Nabble.com. >> >

Re: Apache Camel - war project How to process the Queue and set to another queue?

2013-10-03 Thread Christian Müller
the > >> Bean Object to the inQ it should send to the outQ > >> (Based on above configuration) > >> 3. There is another application which reads the outQ and try to retrieve > >> Bean Object. > >> > >> So what happens is that I could send the Pojo bean to the inQ but it > >> doesnt > >> seems to be route to the outQ. So when I try to read from the outQ the > >> queue > >> is empty. > >> > >> Could you please let me know how we can handle above scenario and what > is > >> the best way to handle this. > >> > >> > >> > >> > >> -- > >> View this message in context: > >> > http://camel.465427.n5.nabble.com/Apache-Camel-war-project-How-to-process-the-Queue-and-set-to-another-queue-tp5740524.html > >> Sent from the Camel - Users mailing list archive at Nabble.com. > >> > > >

Re: Apache Camel - war project How to process the Queue and set to another queue?

2013-10-03 Thread James Carman
Standalone application which connect to the camel war and send the >> Pojo >> >> Class to the Queue (inQ). >> >> 2. Camel war application which has above configuration. So when I pass >> the >> >> Bean Object to the inQ it should send to the outQ >> >> (Based on above configuration) >> >> 3. There is another application which reads the outQ and try to retrieve >> >> Bean Object. >> >> >> >> So what happens is that I could send the Pojo bean to the inQ but it >> >> doesnt >> >> seems to be route to the outQ. So when I try to read from the outQ the >> >> queue >> >> is empty. >> >> >> >> Could you please let me know how we can handle above scenario and what >> is >> >> the best way to handle this. >> >> >> >> >> >> >> >> >> >> -- >> >> View this message in context: >> >> >> http://camel.465427.n5.nabble.com/Apache-Camel-war-project-How-to-process-the-Queue-and-set-to-another-queue-tp5740524.html >> >> Sent from the Camel - Users mailing list archive at Nabble.com. >> >> >> > >>

Re: Apache Camel - war project How to process the Queue and set to another queue?

2013-10-03 Thread kraythe .
amel.apache.org/schema/spring > "> > >> >> > >> >> > >> >> > >> >> > >> >> > >> >> I have crated three applications. > >> >> > >> >> 1. Standalone a

Re: Apache Camel - war project How to process the Queue and set to another queue?

2013-10-03 Thread James Carman
Serializable objects will be sent using a JMS ObjectMessage, not dropped on the floor. No need for JSON serialization. That doesn't mean I don't agree with you that an alternate serialized form should be used (see previous comments). On Friday, October 4, 2013, kraythe . wrote: > You do know th