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 ...