Tracer multiline

2016-07-28 Thread Karts
Hi, I have tracing enabled with http://camel.465427.n5.nabble.com/Tracer-multiline-tp5785600.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: How to Disable AUTH for camel mail smtp component?

2016-07-28 Thread sfbayperson2016
Answering my own question. Setting "mail.smtp.auth=false" as a smtp uri query param worked. I had problems getting it to work due to a typo which prevented that from triggering. -- View this message in context: http://camel.465427.n5.nabble.com/How-to-Disable-AUTH-for-camel-mail-smtp-component-

How to Disable AUTH for camel mail smtp component?

2016-07-28 Thread sfbayperson2016
I'm able to connect to my smtp server directly without a user/password. But camel-mail seems to require it? As I keep getting a javax.mail.AuthenticationFailedException camel is passing back from javamail. Basically I want camel-mail to pass a javamail seesion property "mail.smtp.auth=false" to ja

Re: camel-jdbc and transction manager support

2016-07-28 Thread Paolo Antinori
Thank you Claus! The setting you mention is required. Apparently my specific issue was with a bugged version of h2db: https://groups.google.com/d/msg/h2-database/GJJVQbyHOJQ/lwMzO9OUSjMJ Here a fully working example in Java + Blueprint on JBoss Fuse 6.2.1, for anyone that might be interested

Re: camel-jdbc and transction manager support

2016-07-28 Thread Claus Ibsen
You likely need to set resetAutoCommit=false, so the transaction manager orchestrating the JDBC DataSource can perform the commit at the end, when the TX is set to commit. On Wed, Jul 27, 2016 at 6:50 PM, Paolo Antinori wrote: > Hi, I'm trying to understand if camel-jdbc can work under the coor