Configuring HTTP or HTTPS

This task describes how to configure Documentum Connector to use HTTPS or HTTP.

Procedure

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