Re: Null response calling route

2009-02-15 Thread Claus Ibsen
On Sat, Feb 14, 2009 at 7:10 PM, Nick Heudecker wrote: > Yes, I'm sure the destination receives the message. The message body is > processed and the response set on the message out. > > I've tried it with the direct: component and get the same result. I've set > the InOut pattern everywhere I ca

Re: Null response calling route

2009-02-14 Thread Nick Heudecker
Yes, I'm sure the destination receives the message. The message body is processed and the response set on the message out. I've tried it with the direct: component and get the same result. I've set the InOut pattern everywhere I can see to set it and I'm not getting a response body. I don't see

Re: Null response calling route

2009-02-14 Thread Claus Ibsen
Hi If you want to do a request-response with JMS you need to use InOut. You can use the requestBody method instead as its based on InOut. Are you sure the destination receives the JMS message? And that it returns a reply? Have you tried with some other transport than JMS, you can eg try a direc

Null response calling route

2009-02-13 Thread Nick Heudecker
Hi, I'm using camel 2.0 snapshot and trying to get a response back from the first condition in the following choice(): from(JMS_JIS) .choice() .when().xpath("/jis:ListSupportedFeaturesRequest", cisNamespace) .unmarshal("camelJaxbDataFormat")