Configuring web.xml File
To configure the authentication process type, the authentication property file and session timeout in the web.xml file, follow these steps:
- Procedure
- Navigate to the ASG_HOME/webapp/ASGConfig/WEB-INF directory.
- Open the web.xml file for editing.
- Set the following properties. See
Authentication Properties table for the description of properties.
- Set the authentication process type to LDAP as follows:
<init-param> <param-name>asgAuthProcess</param-name> <param-value>LDAP</param-value> </init-param>
- Set the property file for the LDAP authentication as follows:
<init-param> <param-name>asgAuthPropFile</param-name> <param-value>Path to the property file for LDAP Server property file </param-value> </init-param>
- Set the timeout value for the login session of the user on the Config UI, as follows:
<session-config> <session-timeout>An integer value in minutes</session-timeout> </session-config>
- Set the authentication process type to LDAP as follows:
- Save the changes to the file.