Hello Aaron et al.

following your previous answer, that part of TransactionImpl is not
implemented yet, right?


 public boolean enlistResource(XAResource xaRes)
      throws RollbackException
   {
      // Check rollback only
      if (status == Status.STATUS_MARKED_ROLLBACK)
      {
         throw new RollbackException();
      }
      
      // Add resource
      resources.addElement(xaRes);
      
      return true;
   }


Reply via email to