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)
.log(".... Handle message ${body}")
.onException(Exception.class).handled(true).log("...
Rollbacks").to("seda:abc").markRollbackOnlyLast().end()
.transacted(PROPAGATION_REQUIRES_NEW)
.to(a1).throwException(new Exception("error"));
--
View this message in context:
http://camel.465427.n5.nabble.com/Websphere-MQ-and-PROPAGATION-REQUIRES-NEW-does-not-work-tp5766013p5766031.html
Sent from the Camel - Users mailing list archive at Nabble.com.