getLog().debug("Test TxSession");
getLog().debug("==============");
getLog().debug("");
getLog().debug(++test+"- "+"Looking up home for nextgen.TxSession...");
TxSessionHome txHome = (TxSessionHome) ctx.lookup("nextgen.TxSession");
if (txHome != null )getLog().debug("ok");
getLog().debug(++test+"- "+"Calling create on the home...");
TxSession txBean = null;
// Let's try to create the instance
try {
txBean = txHome.create();
} catch (Exception e) {
getLog().debug("Exception: ", e);
}