Running the deployment service on HTTP

If you do not need to run the deployment service on HTTPS then you can start the service on HTTP.

About this task

You need to edit DCDeploymentWinService.exe.config file which is located in ~ Datacap\support\DBCopy\ to start the service on HTTP. Edit the following in the file.

Procedure

  1. Change base address URL by changing protocol to HTTP and enter the port to be used. Ensure that this port is not used by any other service.
    Example:
    <host>
              <baseAddresses>
                <add baseAddress="http://localhost:85/DCDeploymentService"/>
              </baseAddresses>
            </host>
    
  2. Update httpGetEnabled flag to True and httpsGetEnabled to False
    Example:
    <serviceMetadata httpGetEnabled="True"  httpsGetEnabled="False"/>
  3. Change security mode to None.
    Example:
    <bindings>
          <webHttpBinding>
            <binding name="webBinding" maxBufferSize="104857600"maxReceivedMessageSize="104857600">
              <security mode="None" />
            </binding>
          </webHttpBinding>
        </bindings>