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