if you require secure communications between Content Collector and the CA Data Protection policy engines, you can configure the CA Data Protection web service to use SSL.
To configure the CA Data Protection web service to use SSL
Find this file in the \bin subfolder of the CA Data Protection installation folder on the IBM Content Collector host server.
<services> <service name="ICCImportSvc.WgnICCImportSvc"> <endpoint binding="webHttpBinding" contract="ICCImportSvc.IWgnICCImportSvc"/> </service> </services>
<services> <service name="ICCImportSvc.WgnICCImportSvc"> <endpoint binding="webHttpBinding" contract="ICCImportSvc.IWgnICCImportSvc" bindingConfiguration="webHttps"/> </service> </services>
<bindings> <webHttpBinding> <binding name="webHttps"> <security mode="Transport" /> </binding> </webHttpBinding> </bindings>
The updated web.config file now looks like this:
<services> <service name="ICCImportSvc.WgnICCImportSvc"> <endpoint binding="webHttpBinding" contract="ICCImportSvc.IWgnICCImportSvc" bindingConfiguration="webHttps"/> </service> </services> <bindings> <webHttpBinding> <binding name="webHttps"> <security mode="Transport" /> </binding> </webHttpBinding> </bindings>
The CA Data Protection import web service will accept requests using HTTPS.
Copyright © 2015 CA Technologies.
All rights reserved.
|
|