Re: Using camel route for parsing a csv file

2013-08-07 Thread jduncan
It looks like you may also need to add the apache commons-csv jar to your class path. This is one of the dependencies of the camel-csv jar: org.apache.servicemix.bundles/org.apache.servicemix.bundles.commons-csv Jared -- View this message in context: http://camel.465427.n5.nabble.com/Using-ca

Re: Camel route only dealing with headers

2013-07-30 Thread jduncan
Actually that also does not work for object messages. Camel will still try to deserialize the object in the body. -- View this message in context: http://camel.465427.n5.nabble.com/Camel-route-only-dealing-with-headers-tp5736452p5736502.html Sent from the Camel - Users mailing list archive at

Re: Camel route only dealing with headers

2013-07-30 Thread jduncan
I know object messages are not the best, but there are some places in our app that we do still use them. I'm building a simple utility that should be able to take any message, do some header manipulation, and then pass on the message to another consumer. I got my tests to pass by using from("acti

Camel route only dealing with headers

2013-07-29 Thread jduncan
I have a route that listens on an ActiveMQ endpoint and only manipulates exchange headers. I don't care about the body of the exchange at all. Consequently, I don't want to have to marshal/unmarshal/serialize/deserialize the body at all, but just send it along to anything downstream. Particularl