Hi
I am using Apache DS version 1.5.1. Now I would like to upgrade to version 1.5.4 but I can not find a server.xml file example. Below you can find the old server.xml(1.5.1) * 1 Authenticator * 1 Interceptor * 1 Partition How can I configure that in the new server.xml 1.5.4. Can you please give me a hint? Dominic Stampfli <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd"> <beans> ... <bean id="ldapConfiguration" class="org.apache.directory.server.ldap.LdapConfiguration"> ... <property name="authenticatorConfigurations"> <list> <bean class="org.apache.directory.server.core.configuration.MutableAuthenticatorConfiguration"> <property name="name" value="normalizationService" /> <property name="authenticatorClassName" value="org.apache.directory.server.core.authn.SisSimpleAuthenticator" /> </bean> </list> </property> <property name="interceptorConfigurations"> <list> ... <bean class="org.apache.directory.server.core.configuration.MutableInterceptorConfiguration"> <property name="name" value="SisAdsLdapService" /> <property name="interceptorClassName" value="ch.intersys.sis.ldap.ads.server.SisAdsLdapInterceptor" /> </bean> ... </list> </property> </bean> ... <bean id="subscriberaccessPartitionConfiguration" class="org.apache.directory.server.core.partition.impl.btree.MutableBTreePartitionConfiguration"> <property name="id" value="subscriberaccess" /> <property name="cacheSize" value="100" /> <property name="suffix" value="ou=subscriberaccessservice" /> <property name="partitionClassName" value="ch.intersys.sis.ldap.ads.server.SisPartition" /> <property name="optimizerEnabled" value="true" /> <property name="synchOnWrite" value="true" /> <property name="indexedAttributes"> <set> </set> </property> <property name="contextEntry"> <value> objectClass: top objectClass: domain objectClass: extensibleObject ou: subscriberaccessservice </value> </property> </bean> ... </beans> Dominic Stampfli ------------------------------------------------------------------ Intersys AG Rötistrasse 6 4500 Solothurn Tel 032 / 626 50 76 Fax 032 / 626 50 71 Mail [EMAIL PROTECTED] URL http://www.intersys.ch <http://www.intersys.ch/>
