rollbackLocalTransaction();
}
public void commit() throws JMSException {
if( inXATransaction )
throw new TransactionInProgressException("Cannot commit() if an XA transaction is allready in progress ");
if( autoCommit )
throw new javax.jms.IllegalStateException("Not a transacted session");
if( !autoCommit && !inLocalTransaction)
return;
if( !inLocalTransaction )