if you require secure communications between Content Collector and the CA DataMinder policy engines, you can configure the CA DataMinder web service to use SSL.
To configure the CA DataMinder web service to use SSL
Find this file in the \bin subfolder of the CA DataMinder 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 DataMinder import web service will accept requests using HTTPS.
Copyright © 2014 CA.
All rights reserved.
|
|