try
{
// obtain CustomerHome
Context jndiContext = getInitialContext();
Object obj = jndiContext.lookup("Test81HomeRemote");
Test81HomeRemote home = (Test81HomeRemote)obj;
Test81Remote tester = home.create();
String output = tester.test81c();
System.out.println(output);
}
catch (Exception ex)
{
ex.printStackTrace();
}