Documentation Center

Configuring protocol providers

You configure protocol providers by adding a <ProtocolProvider> element in the cd_archivemanager_conf.xml configuration file.

About this task

If you do not configure a protocol provider in the cd_archivemanager_conf.xml file, the RelaxedProtocolProvider, which that registers HTTPS calls on port 443, is used in which case Archive Manager allows self-signed certificates on the Web site being archived.

Procedure

  1. Open your Archive Manager cd_archivemanager_conf.xml configuration file, by default located in your Tridion Installation \config directory, in a text editor.
  2. Configure the RelaxedProtocolProvider as follows:
    <ProtocolProvider Class="com.tridion.archiving.http.protocol.RelaxedProtocolProvider" Id="https">
      <Param Name="Schema" Value="https"/>
      <Param Name="ProtocolSocketFactory" Value="com.tridion.util.ssl.RelaxedSSLProtocolSocketFactory"/>
      <Param Name="Port" Value="443"/>
    </ProtocolProvider>
  3. Configure the NoProtocolProvider as follows:
    <ProtocolProvider Class="com.tridion.archiving.http.protocol.NoProtocolProvider" Id="https"/>
  4. Configure the SSLProtocolProvider as follows:
    <ProtocolProvider Class="com.tridion.archiving.http.protocol.SSLProtocolProvider" Id="https">
      <Param Name="Schema" Value="https"/>
      <Param Name="Port" Value="443"/>
    </ProtocolProvider>
  5. Save and close cd_archivemanager_conf.xml.