System.out.println("**** EarExampleServlet.service()");
InitialContext ctx = new InitialContext();
Object obj = ctx.lookup("ExampleSession");
ExampleSessionHome home = (ExampleSessionHome)PortableRemoteObject.narrow(obj, ExampleSessionHome.class);
ExampleSession exSess = home.create();
ExampleValue value = exSess.getValue(s);
request.getSession().setAttribute("exampleValue", new ExampleValue(s));
request.getRequestDispatcher("/index.jsp").forward(request, response);
}
catch (Exception e)