com.novell.services.dsml.dom.dom.xml Maven / Gradle / Ivy
<!-- * $OpenLDAP: pkg/jldap/com/novell/services/dsml/dom/dom.xml,v 1.2 2003/02/11 21:15:33 vtag Exp $ * * Copyright (C) 1999 - 2003 Novell, Inc. All Rights Reserved. * * THIS WORK IS SUBJECT TO U.S. AND INTERNATIONAL COPYRIGHT LAWS AND * TREATIES. USE, MODIFICATION, AND REDISTRIBUTION OF THIS WORK IS SUBJECT * TO VERSION 2.0.1 OF THE OPENLDAP PUBLIC LICENSE, A COPY OF WHICH IS * AVAILABLE AT HTTP://WWW.OPENLDAP.ORG/LICENSE.HTML OR IN THE FILE "LICENSE" * IN THE TOP-LEVEL DIRECTORY OF THE DISTRIBUTION. ANY USE OR EXPLOITATION * OF THIS WORK OTHER THAN AS AUTHORIZED IN VERSION 2.0.1 OF THE OPENLDAP * PUBLIC LICENSE, OR OTHER PRIOR WRITTEN CONSENT FROM NOVELL, COULD SUBJECT * THE PERPETRATOR TO CRIMINAL AND CIVIL LIABILITY. --> <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN" "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd"> <web-app> <display-name>DSML Web Service</display-name> <description> DSML Web Service to access eDirectory and other LDAP directories. The implementation included is: dsml - Built by Novell Extend product, JBrokerWeb, this service features robust SOAP handling. This leading edge release does not support HTTP authentication nor SOAP Authentication. </description> <!-- contains the path to the LDAP server --> <context-param> <param-name>ldapHost</param-name> <param-value>www.nldap.com</param-value> </context-param> <!-- contains the port the LDAP server is listening on --> <context-param> <param-name>ldapPort</param-name> <param-value>389</param-value> </context-param> <!-- contains the maximum number of connections allowed to the ldap server--> <context-param> <param-name>ldapMaxConnections</param-name> <param-value>10</param-value> </context-param> <!-- contains the maximum number of clients that are allowed to share a single connection to the ldap server --> <context-param> <param-name>ldapMaxInstancesToShareConnection</param-name> <param-value>10</param-value> </context-param> <!-- contains the path to the TLS (SSL) Keystore --> <context-param> <param-name>ldapKeystore</param-name> <param-value></param-value> </context-param> <!-- this commands start the DSML service as explained in the description --> <servlet> <servlet-name>jbroker</servlet-name> <servlet-class>com.novell.services.dsml.dom.DsmlImpl</servlet-class> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>jbroker</servlet-name> <url-pattern>/service</url-pattern> </servlet-mapping> </web-app>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy