How to make wcf to work over https. I want to use this wcf over https i have searched many articles i didn\'t get the answer please help iam new to wcf concepts. I want to c
It appears you are building a RESTful Service with WCF and you are really close to securing it.
Here is what you need to do to secure it:
WebHttpBinding configuration that has security mode set to Transport.WebHttpBinding configuration to the your Service Endpoint binding.httpGetEnabled="false".These changes are all summed up below in the revised configuration file (see comments for points that changed). Also note that your Service Endpoint must be using the HTTPS scheme and not HTTP.
bindingConfiguration="webHttpTransportSecurity"
behaviorConfiguration="web"
contract="WcfRestfulService.IHttpService" />
httpGetEnabled="false"/>