try{
Context jndiContext = getInitialContext();
CustomerHome home = (CustomerHome)jndiContext.lookup("CustomerHome");
Customer c = home.create(1, "Monson-Haefel","Richard","Wayne");
System.out.println(c.getLastName());
System.out.println(c.getFirstName());
}catch(java.rmi.RemoteException re){re.printStackTrace();}
catch(javax.naming.NamingException ne){ne.printStackTrace();}
catch(javax.ejb.CreateException ce){ce.printStackTrace();}