Protocol providers
Archive Manager provides protocol registration so that you can configure the protocols you want to allow in the captured URLs. Archive Manager provides default implementations of protocol providers, or you can implement your own custom provider. You configure protocol providers by adding a <ProtocolProvider> element in the cd_archivemanager_conf.xml configuration file.
Archive Manager provides the following implementations of protocol providers:
- RelaxedProtocolProvider (the default)
-
The
com.tridion.archiving.http.protocol.RelaxedProtocolProvidercreates a protocol that registers HTTPS calls on port 443 tocom.tridion.util.ssl.RelaxedSSLProtocolSocketFactory. - NoProtocolProvider
-
The
com.tridion.archiving.http.protocol.NoProtocolProvideris a protocol provider that returnsnullso that Archive Manager does not register any protocols. - SSLProtocolProvider
-
The
com.tridion.archiving.http.protocol.SSLProtocolProvidercreates a protocol that registers HTTPS calls on port 443 toorg.apache.commons.httpclient.protocol.SSLProtocolSocketFactoryto validate the identity of the HTTPS server.