Re: Camel WebSocket WsEndpoint not forwarding messages

2014-12-29 Thread Aki Yoshida
If you are expecting acks returned from the external web socket server, you will need to add the corresponding from-endpoint. Take a look at the route configuration of this ahc-ws request/response test. https://git-wip-us.apache.org/repos/asf?p=camel.git;a=blob;f=components/camel-ahc-ws/src/test/ja

Re: Camel

2014-12-29 Thread smilevasu6
No one is here to support this issue? -- View this message in context: http://camel.465427.n5.nabble.com/Camel-tp5761107p5761112.html Sent from the Camel - Users mailing list archive at Nabble.com.

[SQL COMPONENT] mysql transaction

2014-12-29 Thread fabrizio.spataro
Hello, i would use sql component (http://camel.apache.org/sql-component.html) into a transactional scenario. For example: 0) begin 1) insert 2) insert 3) commit I am using mysql. What is the best strategy to do it using camel's component? Tnkx -- View this message in context: http://ca

[SQL COMPONENTE] CamelSqlGeneratedKeyRows has a bug?

2014-12-29 Thread fabrizio.spataro
Hello, i am using sql component with CamelSqlRetrieveGeneratedKeys=true but after an insert operation i don't have any CamelSqlGeneratedKeyRows header. Is it a bug? I am using mysql server 5.1. Tnkx -- View this message in context: http://camel.465427.n5.nabble.com/SQL-COMPONENTE-CamelSqlGe

Re: Camel

2014-12-29 Thread smilevasu6
Hi, Any one can advice on below issue please -- View this message in context: http://camel.465427.n5.nabble.com/Camel-tp5761107p5761109.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Getting a Header property on a exception in the DSL

2014-12-29 Thread Chris Melikian
You could use a new Processor inline in the Java DSL and throw the exception from within the Processor? The exchange is the parameter in the interface method so you can create the exception with anything you want in it. -- View this message in context: http://camel.465427.n5.nabble.com/Getti

How to have Camel Exchange Properties while doing message transfer with ActiveMq

2014-12-29 Thread sathiyaraja
I am doing message transfer with Active MQ's. When i transfer the Message contents to a ActiveMq Endpoint, All the camel exchange properties are lost. How to use exchange properties with Active Mq. My Implementation., /person/city = 'London' *

Re: How to have Camel Exchange Properties while doing message transfer with ActiveMq

2014-12-29 Thread Claus Ibsen
Hi Its only the content from the message that is transferred, eg body + headers. And for JMS there is some restrictions. See the Camel JMS page for more details. On Mon, Dec 29, 2014 at 4:55 PM, sathiyaraja wrote: > I am doing message transfer with Active MQ's. When i transfer the Message > cont

Re: Camel

2014-12-29 Thread Taariq Levack
Smells like a bug in the way you build up the SQL so start by getting it to run in your IDE or db client. Or write the SQL you expect and some unit tests. If that works and Camel doesn't then send the test, that's the fastest way to get help. Also see http://camel.apache.org/support.html Taariq