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)

View File

@ -10,7 +10,7 @@
<bci:env prop="java.naming.security.authentication" value="simple"/>
<bci:env prop="java.naming.security.principal" value="PROXY_USER_NAME"/>
<bci:env prop="java.naming.security.credentials" value="PROXY_USER_PW"/>
<bci:env prop="java.naming.referral" value="follow"/>>
<bci:env prop="java.naming.referral" value="follow"/>
<bci:env prop="com.novell.casa.authtoksvc.directory_type" value="eDir"/>
<bci:connection xsi:type="bci:LDAPConnector">
<bci:address>ldaps://LDAP_HOST_NAME:LDAP_LISTEN_PORT</bci:address>

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed Jan 31 12:25:30 MST 2007 - jluciani@novell.com
- Fixed typo in iaRealms.xml file template which was keeping
the ATS from running.
-------------------------------------------------------------------
Thu Jan 25 15:18:38 MST 2007 - jluciani@novell.com