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