We recommend that you configure the CCS so that calling applications must use SSL to connect to the CCS web service. If the CCS web service is not secure, any documents that are passed to the CCS for classification are transferred across your network in plaintext format.
CCS Integration with CA SiteMinder
To establish mutual authentication over SSL between the SiteMinder client and the CCS Server, the two applications must trust the identity of each other. In particular:
To configure security for the CCS web service over HTTPS
This section describes how to configure IIS so that the CCS web service uses SSL. The instructions are based on IIS 7.
Important! Repeat these instructions on your primary CCS server and each secondary CCS server.
Available features for the host server are displayed in the center pane.
Any SSL certificates that are already installed on the CCS server are displayed in the Server Certificates pane. Choose the certificate that you want to use.
If no certificates are installed, use the Actions options in the right-hand pane to create or import a certificate.
The Site Bindings dialog displays.
The Add Site Binding dialog displays.
Available settings for the CADLPCCS web application are displayed in the center pane.
Available SSL settings for CADLPCCS web application are displayed in the center pane.
Note: By default, the CADLPCCS web application is only configured for HTTP access and net.tcp access.
<basicHttpBinding>
<binding [values]name="basic" maxReceivedMessageSize="78643200"
maxBufferPoolSize="1048576" maxBufferSize="78643200"
sendTimeout="00:06:00">
<security mode="None"></security>
<readerQuotas maxArrayLength="78643200"/>
</binding>
</basicHttpBinding>
<security mode="Transport"></security>
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange">
<endpoint address="mex" binding="mexHttpsBinding" contract="IMetadataExchange">
<serviceMetadata httpGetEnabled="True"/>
<serviceMetadata httpsGetEnabled="True"/>
https://localhost/CADLPCCS/WgnCCS.svc
The SiteMinder administrator must then deploy this certificate on the SiteMinder Policy Servers. For details about integration with the CCS and the associated SSL requirements, see the SiteMinder Implementation Guide.
However, if the external application and the CCS use different certification authorities, you must:
To establish mutual authentication between the CCS and client applications
(Optional) If you want to use mutual authentication based on client certificates, a further change to web.config is required.
Find web.config on the CCS server in the \CCS\WebService subfolder of the CA DLP installation folder.
<basicHttpBinding>
<binding name="basic" maxReceivedMessageSize="78643200"
maxBufferPoolSize="1048576" maxBufferSize="78643200" sendTimeout="00:06:00">
<security mode="Transport"></security>
<readerQuotas maxArrayLength="78643200"/>
</binding>
</basicHttpBinding>
<security mode="Transport">
<transport clientCredentialType=”Certificate”/>
</security>
<serviceMetadata httpsGetEnabled="True"/> <endpoint address="mex" binding="mexHttpsBinding" contract="IMetadataExchange">
Note: All security settings in web.config must match the security settings that are configured for the CADLPCCS web application in IIS.
| Copyright © 2012 CA. All rights reserved. | Tell Technical Publications how we can improve this information |