try {
Context initial = new InitialContext();
Object objref = initial.lookup("Hello");
HelloHome home =
(HelloHome)PortableRemoteObject.narrow(objref, HelloHome.class);
hello = home.create();
} catch (Exception exc) {
log(exc.toString());
throw new ServletException(exc.getMessage());
}