InitialContext ctx1 = new InitialContext(env1);
SessionToEntityHome home1 =
(SessionToEntityHome) ctx1.lookup("cif.StatefulSession");
AComplexPK key = new AComplexPK(true, 0, 0, 0, "testCacheInvalidation");
SessionToEntity bean1 = home1.create(key);
String msg = bean1.createEntity();
log.info("create#1, "+msg);
// Call accessEntity twice to validate data is consistent on both nodes
NodeAnswer answer1 = bean1.accessEntity();
log.info("Answer1: "+answer1);