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) | ||||
|   | ||||
| @@ -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> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user