We are trying to build an application, which talks to the remote EJB services and local database. EJB methods are CMT with TransactionAttributeType.REQUIRES_NEW.
My question is: how can we control EJB transactions from client?
|
We are trying to build an application, which talks to the remote EJB services and local database. EJB methods are CMT with My question is: how can we control EJB transactions from client? |
||||
|
|
You cannot control EJB transactions from the client. If you're using Container Managed Transactions than you've decided that the container should manage them. The only "control" over transaction the client has is to re-invoke a method after The client invokes a method with |
|||
|
|