Securing the Endpoints

This end point refers to the WCF endpoint hosted by windows service to access the physical storage to store the file. The endpoint location is stored in the web service configuration file.

<system.serviceModel>
  <bindings>
    <basicHttpBinding>
      <binding name="FileUpdater" />
    </basicHttpBinding>
  </bindings>
  <client>
   <endpointaddress="https://localhost/ConfigurationUpdaterService/FileUpdaterService"
   binding="basicHttpBinding" bindingConfiguration="FileUpdater"
   contract="FileUpdaterService.IFileUpdaterService" name="FileUpdater1">
  </endpoint>
  </client>
</system.serviceModel>