This content has been marked as final.
Show 1 reply
-
1. Re: Remote Client EJB Transactions in EAP 7.1
wdfink May 24, 2018 7:58 AM (in response to johnnuy)If you have a remote client for EJB's you can simple use the InitialContext to get a UserTransaction reference
uTx = (UserTransaction) ic.lookup("txn:UserTransaction");
with uTx.begin() and uTx.rollback() uTx.commit() you can control the server side transaction.
This will work for all EJB's