0N/A<?xml version="1.0" encoding="ISO-8859-1"?>
0N/A
801N/A<web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
801N/A xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
801N/A version="2.4">
0N/A
801N/A <context-param>
5612N/A <description>The hostname or IP address of the OpenDJ server; e.g., localhost</description>
801N/A <param-name>ldap.host</param-name>
801N/A <param-value>localhost</param-value>
801N/A </context-param>
5512N/A
801N/A <context-param>
5612N/A <description>The port number of the OpenDJ server; e.g., 389</description>
801N/A <param-name>ldap.port</param-name>
801N/A <param-value>389</param-value>
801N/A </context-param>
0N/A
5512N/A<!-- Uncomment and fill if you want a default authentication between the DSML
5512N/A gateway and the LDAP server when DSML request have no Basic HTTP authentication
5512N/A <context-param>
5512N/A <description>The user DN for authentication (optional)</description>
5512N/A <param-name>ldap.userdn</param-name>
5512N/A <param-value>cn=Directory Manager</param-value>
5512N/A </context-param>
5512N/A
5512N/A <context-param>
5512N/A <description>The password for authentication (if ldap.userdn is set)</description>
5512N/A <param-name>ldap.userpassword</param-name>
5512N/A <param-value>secret12</param-value>
5512N/A </context-param>
5512N/A-->
5512N/A
5512N/A <context-param>
5648N/A <description>A flag to specify if the HTTP Authorization header field's
5648N/A Basic credentials is built with a plain ID (if false, it's a DN)</description>
5648N/A <param-name>ldap.authzidtypeisid</param-name>
5648N/A <param-value>false</param-value>
5648N/A </context-param>
5648N/A
5648N/A <context-param>
5512N/A <description>A flag to specify if the ldap.port is the SSL secured port</description>
5512N/A <param-name>ldap.usessl</param-name>
5512N/A <param-value>false</param-value>
5512N/A </context-param>
5512N/A
5512N/A <context-param>
5512N/A <description>A flag to specify if StartTLS should be use to secure connections to the ldap.port</description>
5512N/A <param-name>ldap.usestarttls</param-name>
5512N/A <param-value>false</param-value>
5512N/A </context-param>
5512N/A
5512N/A <context-param>
5648N/A <description>A flag to specify if all certificates should be blindly trusted</description>
5512N/A <param-name>ldap.trustall</param-name>
5512N/A <param-value>false</param-value>
5512N/A </context-param>
5512N/A
5512N/A
5512N/A<!-- Uncomment and fill if you enable SSL or StartTLS and want to verify
5512N/A the LDAP server certificate
5512N/A <context-param>
5512N/A <description>The path to the truststore when ssl or starttls is enabled</description>
5512N/A <param-name>ldap.truststore.path</param-name>
5512N/A <param-value></param-value>
5512N/A </context-param>
5512N/A
5512N/A <context-param>
5512N/A <description>The password of the truststore when ssl or starttls is enabled</description>
5512N/A <param-name>ldap.truststore.password</param-name>
5512N/A <param-value></param-value>
5512N/A </context-param>
5512N/A-->
5512N/A
5980N/A<!-- Add an extra <context-param> like the one below for each extended operation
5980N/A that is known to return a string in the LDAP response. -->
5980N/A <context-param>
5980N/A <description>The Who Am I? [RFC 4532] extended operation returns a string.</description>
5980N/A <param-name>ldap.exop.string.1.3.6.1.4.1.4203.1.11.3</param-name>
5980N/A <param-value>true</param-value>
5980N/A </context-param>
5980N/A
801N/A <servlet>
801N/A <servlet-name>DSMLServlet</servlet-name>
801N/A <servlet-class>org.opends.dsml.protocol.DSMLServlet</servlet-class>
801N/A </servlet>
801N/A
801N/A <servlet-mapping>
801N/A <servlet-name>DSMLServlet</servlet-name>
801N/A <url-pattern>/DSMLServlet</url-pattern>
801N/A </servlet-mapping>
0N/A
0N/A</web-app>
0N/A
0N/A