This task describes how to configure Documentum Connector to use HTTPS or HTTP.
Procedure
- Open the
Web.config configuration file, located by default in your SDL Tridion installation \DocumentumConnector\DocumentumConnector.WebService\ directory, in a text editor.
- To configure Documentum Connector for HTTP, configure the
<security> section as follows:
<security mode="TransportCredentialOnly">
<transport clientCredentialType="Basic" realm="localhost" />
</security>
- To configure Documentum Connector for HTTPS:
- Configure the Content Manager Explorer Web site for HTTPS. For more information, see the SDL Tridion documentation.
- Configure the
<security> section as follows:
<security mode="Transport">
<transport clientCredentialType="Basic" realm="localhost" />
</security>
- Save and close
Web.config.