TransactedErrorHandler requeue JMS message to DLQ

2012-08-07 Thread marnold
Camel Users, I'm using Camel 2.9.0. I have the following route: Where testProcess always throws an exception. For testing purposes! My goal is to achieve the following: (i) if fails, the enqueue to 'queue.so

Camel route JMS -> SOAP -> JMS

2012-01-25 Thread marnold
Hi, I am trying to create a Camel route that will: 1) get JMS messages from a queue (using ActiveMQ), 2) send the message to a third-party SOAP web service, 3) take the response from that web service and, 4) put it onto another JMS queue In addition, I'd like to populate the JMS correlation ID o

Re: Camel route JMS -> SOAP -> JMS

2012-01-27 Thread marnold
Thanks Babak. I had assumed Camel would auto-magically create a JMS TextMessage with the message text from the body of the Camel message, and JMS StringProperties from the Camel message's headers. I will look into your suggestions. Thanks again. -- View this message in context: http://camel.46

Re: Camel route JMS -> SOAP -> JMS

2012-01-30 Thread marnold
I played around with custom TypeConverters with no luck. I couldn't understand the messageConverter documentation and wanted to avoid all things Spring. On a whim I removed the and found I was right in that the payload is automatically converted to the JMS message body. For some reason the pres

Get specific dynamic file

2012-04-23 Thread marnold
Hi, I receive a JMS message with a filename as a message property. I then want to use the file component to read this file from a directory, waiting if necessary if the file does not exist. This is what I have tried: But this

After split, get Stream closed on original message

2012-07-27 Thread marnold
Camel Users, I need to take a large XML message, split into smaller messages, send each small message to a JMS destination, then apply XSLT to original message and send that somewhere else... The split works well, the smaller messages are processed correctly, but when I try to apply an XSLT to th

Re: After split, get Stream closed on original message

2012-07-27 Thread marnold
Sorry - should've mentioned. As is apparent from the exception, I am using at the top of my route, followed by http://";> . Not sure if that makes a difference... -- View this message in context: http://camel.465427.n5.nabble.com/After-split-get-Stream-closed-on-original-message-tp57165

Re: After split, get Stream closed on original message

2012-07-30 Thread marnold
Thanks Christian, that's works nicely. I knew it must've been something like that, just didn't know the Camel-way to fix it. -- View this message in context: http://camel.465427.n5.nabble.com/After-split-get-Stream-closed-on-original-message-tp5716557p5716606.html Sent from the Camel - Users m