* thrown when there is a problem getting the writer
*/
protected void doGet(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {
try {
ExampleFacadeLocal facade = ExampleFacadeUtil.getLocalHome().create();
response.getWriter().println("Got ID " + facade.getId(request.getParameter("name")));
} catch (NamingException e) {
throw new ServletException(e);
} catch (CreateException e) {
throw new ServletException(e);
}