Re: WMQ Reply-to queue

2015-10-04 Thread Sashika
Hi Creg, setting exchange.getIn().setHeader("JMS_IBM_Report_COA", MQC.MQRO_COA_WITH_FULL_DATA); worked partially as the required header I guess has been applied. I browsed the message using queue browser and now it says "Confirm-on-arrival with full data". That means setting the value in exchange

Re: How to retain exchange headers through RoutingSlip

2015-10-04 Thread Claus Ibsen
Hi Ah yeah read from a file and a file does not include any headers when you write to a file. The body is the content of the file. And all headers is not stored. You need to do some kind of custom message transformation if you want to include headers, and also when you read the file. eg where

Re: https REST DSL servicemix CamelHttpTransportServlet

2015-10-04 Thread Arnaud Deprez
As the servlet use jetty by default you can configure it but I didn't recommend it. It's better and easier and more scalable to use a proxy like haproxy, nginx or apache and configure it with ssl endpoints in front of your web service. These tools are especially build for this use case Le Dim 4

2.16 estimated release date?

2015-10-04 Thread Anton Hughes
Hello When is 2.16 expected to be released? Im interested to try some of the new improvements. Thanks

Re: How to retain exchange headers through RoutingSlip

2015-10-04 Thread David Hoffer
I'm not trying to add any headers to the file when reading and writing...I'm just adding them to the Camel Exchange so that when the file is written in my Processor I have some 'metadata' about the file. I need the 'metadata' so I know where to write the file. I get the bytes to write from the

Re: Unstable test with camel-test-blueprint

2015-10-04 Thread Grzegorz Grzybek
Hello See this answer: http://camel.465427.n5.nabble.com/VOTE-Camel-2-16-0-tp5772119p5772249.html regards Grzegorz Grzybek 2015-10-04 12:29 GMT+02:00 arnaudeprez : > Hi folks, > > I just reran my tests with camel 2.16-SNAPSHOT and it doesn't solve my > issue. > So the

Re: Cannot Auto Create Component - Netty4

2015-10-04 Thread SteveR
Roger: I'm new to Camel as well. I use a Maven Java project, so I just ensure that the Maven dependencies have the correct version of camel-netty4. I also use the Java DSL rather that spring. However, did you see this stackoverflow post entitled: *Camel netty component example doesn't work,

Re: How to retain exchange headers through RoutingSlip

2015-10-04 Thread Claus Ibsen
Hi Sorry I think you confuse us. You talk about routing slip and show some code of a route that starts from a file, and without any routing slip. Also see this FAQ http://camel.apache.org/why-do-my-message-lose-its-headers-during-routing.html On Sun, Oct 4, 2015 at 4:20 PM, David Hoffer

Re: MultiMedia Message(MMS) with Apache Camel

2015-10-04 Thread Claus Ibsen
Hi Thanks for sharing your blog post. You can hide all the logic in a Camel component or data format, if you want to make it more reusable. If MM7 is a popular choice, you are welcome to try that and work on contributing a camel-mm7 component. A few links to read more

Re: Cannot Auto Create Component - Netty4

2015-10-04 Thread R12
Hi SteveR, Mine error was that it is not able to create Netty4 and hence I suspect it is not detecting the camel-netty4 library. May I know if your camel-netty4.jar is in your java class path? Because I just put the library in the class path of my project. I didnt see the message