Hi,
I am using a JTATransactionManager to manage, create, suspend my transactions. I have a method, Method A, that calls another method, Method B, which itself calls another method, Method C. Method A creates a transaction, and Method B suspends the transaction while it is running. I want Method C to resume the same transaction that B suspended. Is this possible? Right now, Method C is forced to create a new transaction, because it does not see the suspended transaction. Or, is it that while Method B is active, the suspended transaction cannot be resumed. (We are using TransactionProxyFactoryBean to intercept our method calls and uses the transactions)
Roshan


Reply With Quote