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