* thrown when there is a problem getting the writer
*/
protected void doGet(HttpServletRequest request,
HttpServletResponse response) throws IOException, ServletException {
Test test = new Test();
try {
// test.testWebServiceLookup();
test.testMEJBLookup();
} catch (Exception e) {
throw new ServletException(e);
}
}