Fixed typo in iaRealms.xml template which was keeping the ATS from

running.
This commit is contained in:
Juan Carlos Luciani
2007-01-31 19:27:00 +00:00
parent d94f982a4a
commit 9dbe2a3ade
3 changed files with 19 additions and 1 deletions

View File

@@ -233,6 +233,12 @@ public final class Rpc extends javax.servlet.http.HttpServlet implements javax.s
System.err.println("Rpc.init()- Exception caught: " + e.toString());
throw new ServletException("Exception caught while instantiating Rpc methods", e);
}
catch (Error e)
{
System.err.println("Rpc.init()- Error caught: " + e.toString());
e.printStackTrace();
throw new ServletException("Exception caught while instantiating Rpc methods", e);
}
}
/**
@@ -316,6 +322,12 @@ public final class Rpc extends javax.servlet.http.HttpServlet implements javax.s
System.err.println("Rpc.doPost()- Exception caught: " + e.toString());
response.sendError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
}
catch (Error e)
{
System.err.println("Rpc.doPost()- Error caught: " + e.toString());
e.printStackTrace();
response.sendError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
}
finally
{
if (out != null)