E.1 LDAP User Authentication Input File

You can modify the sitescape-conferencing/cluster-prototype/ldap.xml.in input file to use Active Directory* synchronization instead of eDirectory synchronization, and to map additional LDAP attributes to Conferencing contact fields.

To use Active Directory synchronization, you need to comment out the eDirectory™ section in the file and uncomment the Active Directory section. See the examples below:

eDirectory Section

 	<!-- configuration for eDirectory and generic LDAP server -->
	<attributes>
	  <attribute>
	    ...
	  </attribute>
	</attributes>

Move the closing XML comment tag (-->) after the ...generic LDAP server comment so that it follows the</attributes> tag under the eDirectory section:

 	<!-- configuration for eDirectory and generic LDAP server 
	<attributes>
	  <attribute>
	    ...
	  </attribute>
	</attributes>
      -->

ActiveDirectory Section

	<!-- configuration for ActiveDirectory
	<attributes>
	  <attribute>
	    ...
	  </attribute>
	</attributes>
	-->

Move the closing XML comment tag (-->) after the </attributes> tag so that it follows the configuration for ActiveDirectory comment:

	<!-- configuration for ActiveDirectory -->
	<attributes>
	  <attribute>
	    ...
	  </attribute>
	</attributes>