Posted on: 5/16/2014 7:02:26 PM | Views : 224

Hi,
We are in the process of making our application secure (i.e use https instead of http).
What chnages do I make to the exiting endpoint configuration to include https.
<system.serviceModel> <behaviors> <endpointBehaviors> <behavior name="MyProjectName.WCFClientsAspNetAjaxBehavior"> <enableWebScript/> </behavior> </endpointBehaviors> </behaviors> <serviceHostingEnvironment aspNetCompatibilityEnabled="true"> <baseAddressPrefixFilters>
<add prefix="http://www.MyWebSite.com"/> </baseAddressPrefixFilters> </serviceHostingEnvironment> <services> <service name="MyProjectName.WCFClients"> <endpoint address="http://MyWebSite.com:80/WCFClients.svc" behaviorConfiguration="MyProjectName.WCFClientsAspNetAjaxBehavior" binding="webHttpBi ...

Go to the complete details ...