UserTransactionStickyHome home = (UserTransactionStickyHome)ctx.lookup(jndiName);
UserTransactionStickyRemote bean = home.create();
for (int j = 1; j <= numCallsPerTx; j++)
{
String origin = "tx" + i + "-c" + j;
log(origin + " " + bean.amISticky());
}
log("");
}
catch (Exception e)
{