logout();
login("testDomainInteraction", "testDomainInteraction".toCharArray());
log.debug("+++ testDomainInteraction()");
Object obj = getInitialContext().lookup("spec.UserInRoleContextSession");
obj = PortableRemoteObject.narrow(obj, SecurityContextHome.class);
SecurityContextHome home = (SecurityContextHome) obj;
log.debug("Found UserInRoleContextSession");
SecurityContext bean = home.create();
log.debug("Created spec.UserInRoleContextSession");
HashSet roles = new HashSet();
roles.add("Role1");
roles.add("Role2");
bean.testDomainInteraction(roles);