final Context context = new InitialContext(jndiProperties);
String className = "Stateful" + scope + "ScopedEJBwithJaxRsComponents";
Class<?> viewName = Class.forName("org.jboss.resteasy.cdi.injection.reverse." + className + "Interface");
String lookup = "ejb:/resteasy-reverse-injection-test/" + className + "!" + viewName.getName() + "?stateful";
log.info("lookup: " + lookup);
EJBInterface remote = EJBInterface.class.cast(context.lookup(lookup));
log.info("remote: " + remote);
remote.setUp(NON_CONTEXTUAL);
Assert.assertTrue(remote.test(NON_CONTEXTUAL));
}