*/
public void testSetRollbackOnlyWithUserTransaction() throws Exception {
UserTransaction utx = getUserTransaction();
utx.begin();
try {
ItfContainerTransaction sfsbContainerTransaction = getBean();
// calls the setRollbackOnly
try {
sfsbContainerTransaction.setRollbackOnly(DATABASE_1, DATABASE_2);
} catch (TransactionException e) {
throw e.getParentException();
}
// tries to commit the transaction
try {