0 Replies Latest reply on Jun 23, 2003 8:16 AM by jriedesel

    too many ejbStore in transaction

    jriedesel

      JBoss 3.2.
      I start a transaction in my servlet:
      javax.naming.Context jtaContext = new InitialContext();
      jtaTX =
      (UserTransaction)jtaContext.lookup("java:comp/env/tx/UserTransaction");
      jtaTX.begin();

      My session and entity beans are setup as transaction
      begin Required. But, I see lots of ejbStore of a particular entity bean before the transaction has been committed. (Using committ option B)

      Is there a way to pospone the ejbStore until the end of the transaction?

      Thanks,
      Joel