Because the TransactionManager has no way to register a XAResource manager, so that it can enlist XAResources in future Transactions.
The only way to solve this problem is to wrap the handle of the interested service interface. Each method on the interface does the following:
- Check if a tx is present
- Figure out if the handle for this tx
- If not already participating enlist its XAResource using Transaction.enlist(XAResource)
- Registers a callback to enable cleanup using Transaction.registerSynchronization(Synchronization).
Does this seem like a reasonable strategy ?