-
1. Re: java.lang.IllegalStateException: BaseTransaction.commit - [com.arjuna.ats.internal.jta.transaction.arjunacore.notx]
mmusgrov Nov 16, 2011 10:16 AM (in response to ap.roland)Try turning up the debug level so that you can check the timestamps of when the transaction is started and ended.to ensure that you aren't exceeding the transaction timeout.
-
2. Re: java.lang.IllegalStateException: BaseTransaction.commit - [com.arjuna.ats.internal.jta.transaction.arjunacore.notx]
jhalliday Nov 16, 2011 10:31 AM (in response to mmusgrov)Odds are something you call is terminating the transaction. If is was a background timeout the tx would still be associated with the Thread and you'd get an illegal state - tx aborted from the commit() instead of a notx.
-
3. Re: java.lang.IllegalStateException: BaseTransaction.commit - [com.arjuna.ats.internal.jta.transaction.arjunacore.notx]
ap.roland Nov 16, 2011 10:33 AM (in response to mmusgrov)Our timeout (transactionTimeout) is 900 seconds.
All procedure is executed for 8 seconds.
We haven't found warn messages in log files about exceeding the transaction timeout.
-
4. Re: java.lang.IllegalStateException: BaseTransaction.commit - [com.arjuna.ats.internal.jta.transaction.arjunacore.notx]
tomjenkinson Jan 25, 2012 5:21 AM (in response to ap.roland)Hi Panchenko,
Did you get to the bottom of this? Mikes suggestion of turning up the debug level would help you spot if Jonathans hunch was right that something you were calling in "// ... some changes of recipient" completed the transaction as you would spot that in the log too.
Tom