Re: message losing headers

2010-10-02 Thread Claus Ibsen
Read the FAQ http://camel.apache.org/why-do-my-message-lose-its-headers-during-routing.html On Fri, Oct 1, 2010 at 9:46 PM, Mark Webb wrote: > I am passing a message through a series of Processors and in the > course of this processing I am setting header information in the > Message objects.  I

Re: message losing headers

2010-10-01 Thread Donald Whytock
I tried passing headers in messages on a SEDA queue, and saw that the header name was converted from mixed case to lowercase by the setHeader() method. Is this intended behavior? And is it perhaps making headers appear to disappear? Don On Fri, Oct 1, 2010 at 4:24 PM, Mark Webb wrote: > They a

Re: message losing headers

2010-10-01 Thread Mark Webb
They are just strings. Seems like once I changed the destinations from queues to direct: the header information started carrying over. Must be once the message leaves Camel the header information is gone. Thanks for the help On Fri, Oct 1, 2010 at 4:17 PM, Stephen Gargan wrote: > You may want

Re: message losing headers

2010-10-01 Thread Stephen Gargan
You may want to read the Notes section in the JMS Component where is describes valid headers. http://camel.apache.org/jms.html Check that you have no '-' or the like in the header names. What do the dropped headers look like? thx ste On Fri, Oct 1, 2010 at 12:46 PM, Mark Webb wrote: > I am pa

message losing headers

2010-10-01 Thread Mark Webb
I am passing a message through a series of Processors and in the course of this processing I am setting header information in the Message objects. I have run into a problem where after setting a header value in one Processor, the next Processor in the routing does not see it. I have run through s