Fixed typo in iaRealms.xml template which was keeping the ATS from
running.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user