App.config 765 B

12345678910111213141516171819
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <!-- Example app.config file for specifying default LDAP server information -->
  3. <configuration>
  4. <configSections>
  5. <sectionGroup name="System.DirectoryServices">
  6. <section name="Settings" type="System.Configuration.NameValueSectionHandler"/>
  7. </sectionGroup>
  8. </configSections>
  9. <System.DirectoryServices>
  10. <Settings>
  11. <add key="servername" value="xp050"/>
  12. <add key="port" value="389"/>
  13. <add key="securitymech" value="1.2.840.113554.1.2.2"/>
  14. <add key="securityappname" value="com.mainsoft.system.directoryservices"/>
  15. <add key="authenticationmech" value="GSSAPI"/>
  16. </Settings>
  17. </System.DirectoryServices>
  18. </configuration>