Transaction tx = getTransaction();
if (tx == null)
throw new RuntimeException("No transaction");
String id = tx.toString();
TestSession next = (TestSession) context.getEJBObject();
int hashCode = next.invokeNext(id);
if (hashCode != getConnectionHashCode())
throw new RuntimeException("Not using same connection - assumes track by connection");
}
catch (Exception e)
{