UserTransaction ut;
try {
ut = (UserTransaction) containerSystem.getJNDIContext().lookup("comp/UserTransaction");
} catch (NamingException e) {
logger.debug("User transaction is not bound to context, lets create it");
ut = new CoreUserTransaction(getTransactionManager());
}
return ut;
}