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