utm.init();
Dictionary<String, String> tmProps = new Hashtable<String, String>();
tmProps.put("osgi.jndi.service.name", "AtomikosV3");
utmRegistration = context.registerService(TransactionManager.class.getName(), utm, tmProps);
// UserTransaction
userTransaction = new UserTransactionImp();
Dictionary<String, String> utmProps = new Hashtable<String, String>();
utmProps.put("osgi.jndi.service.name", "AtomikosV3");
userTransactionRegistration = context.registerService(UserTransaction.class.getName(), userTransaction, utmProps);
} catch (Exception e) {
LOGGER.logWarning(e.getMessage(), e);