Re: Camel and JTA

2015-04-19 Thread Charlie Mordant
Hi Christian, So no transaction within camel route? Regards, 2015-04-19 20:13 GMT+02:00 Christian Schneider : > Unfortunately camel is quite fixed on spring in the transaction support. I > would also prefer to completely get rid of the spring dependency in OSGi. > At least it works together wit

Re: Camel and JTA

2015-04-19 Thread Christian Schneider
Unfortunately camel is quite fixed on spring in the transaction support. I would also prefer to completely get rid of the spring dependency in OSGi. At least it works together with blueprint nicely. Christian Am 19.04.2015 um 19:54 schrieb Charlie Mordant: Hi Jean-Yves, But you're always usin

Re: Camel and JTA

2015-04-19 Thread Charlie Mordant
Hi Jean-Yves, But you're always using org.apache.camel.spring.spi.SpringTransactionPolicy that is camel-spring backed, so spring-dm backed... Regards, 2015-04-19 19:15 GMT+02:00 sekaijin : > I've dropped Spring-DM for blueprint. > > http://camel.apache.org/using-osgi-blueprint-with-camel.html >

Re: Camel and JTA

2015-04-19 Thread sekaijin
I've dropped Spring-DM for blueprint. http://camel.apache.org/using-osgi-blueprint-with-camel.html http://www.liquid-reality.de/display/liquid/2012/07/20/Apache+Karaf+Tutorial+Part+7+-+Camel+JPA+and+JTA+transactions Bye -- View this message in context: http://camel.465427.n5.nabble.com/Camel-

Camel and JTA

2015-04-19 Thread Charlie Mordant
Hi Camel riders! Is there a way to use transaction (e.g. transacted) without using Spring in Camel? I'm not a Spring hater, I just can't use camel-spring: * I'm on an OSGI environment, and camel-spring requires spring-3.x/spring-dm (also xbean spring that also requires spring 3). * My project/fr

Re: Websphere MQ and PROPAGATION_REQUIRES_NEW does not work

2015-04-19 Thread blommish
Little note, PROPAGATION_REQUIRES_NEW does work when being in the same route, but once I send it to a direct: queue it fails. And yes, the seda:queue I did since I didn't get the deadLetterQueue to work... from("seda:abc").log("Seda sent to error queue").to(errorQueue); from(inbound_queue)