Documentation Center

Configuring LDAP or SSO (using HTTP or HTTPS)

This task describes how to configure Documentum Connector to use LDAP or SSO (single-sign on) using HTTPS or HTTP.

Before you begin

If you are configuring Documentum Connector for LDAP, you first need to configure LDAP authentication for the Content Manager of SDL Tridion. For more information, refer to the implementer's documentation portal.

Procedure

  1. Open Internet Information Services (IIS) Manager.
  2. Go to your SDL Tridion 2011 Web site.
  3. To configure Documentum Connector for LDAP and SSO using HTTP:
    1. On the documentum folder, change the Authentication from Windows Authentication to Anonymous Authentication.
    2. Open the Web.config configuration file, located by default in your SDL Tridion installation \DocumentumConnector\DocumentumConnector.WebService\ directory, in a text editor.
    3. Configure the <security> section as follows:
      <security mode="TransportCredentialOnly">
        <transport clientCredentialType="None" realm="localhost" />
      </security>
    4. Save and close the file.
    5. Restart IIS.
  4. To configure Documentum Connector for LDAP and SSO using HTTPS:
    1. On the documentum folder, change the Authentication from Windows Authentication to Anonymous Authentication.
    2. Open the Web.config configuration file, located by default in your SDL Tridion installation \DocumentumConnector\DocumentumConnector.WebService\ directory, in a text editor.
    3. Configure the <security> section as follows:
      <security mode="Transport">
        <transport clientCredentialType="None" realm="localhost" />
      </security>
    4. Save and close the file.
    5. Restart IIS.