public void testSessionHome30() throws Exception {
InitialContext jndiContext = new InitialContext();
Session30RemoteBusiness session = (Session30RemoteBusiness) jndiContext.lookup("java:module/Session30!" + Session30RemoteBusiness.class.getName());
Assert.assertNotNull(session);
String access = session.access();
Assert.assertEquals("Session30", access);
Session30Home home = (Session30Home) jndiContext.lookup("java:module/Session30!" + Session30Home.class.getName());
Assert.assertNotNull(home);
Session30 sessionRemote = (Session30) home.create();