1 Reply Latest reply on Mar 24, 2004 5:47 AM by jaksa

    Concurrent transactions

    jarzyn

      How can I use a multiple concurrent transactions by the same client? For example:

      T1 begin
      method1() : T1
      T2 begin
      method2() : T2
      method3() : T1
      method4() : T2
      ...

      A few SFSBs that handle UserTransaction objects is good idea?

        • 1. Re: Concurrent transactions

          You can suspend and resume transactions, but controlling transactions from a remote client won't work with the default transaction manager because it doesn't support transaction propagation. You can use a ditributed tx manager (Arjuna or Tyrex) or you can do it on the server side in a SFSB.

          Jaksa