I found the solution: just setting the sessionTransacted=true in the JmsTemplate was not enuogh. Somehow, JMS does not open a short lived local tx.
So I inserted a transaction template around the...
Type: Posts; User: aspring1; Keyword(s):
I found the solution: just setting the sessionTransacted=true in the JmsTemplate was not enuogh. Somehow, JMS does not open a short lived local tx.
So I inserted a transaction template around the...
I have a Jta transaction opened, and I am doing different things inside (like db access within a tx template, etc).
In case the Jta fails, there will be a rollback on the persistent objects, so that...