My site is fully https. Therefore, I want to call WCFService in the HTTPS protocol, but Microsoft says that with aspNetCompatibilityEnabled="true" we cannot use bindings other than http, which is probably why I get a ServiceActionException. When I do aspNetCompatibilityEnabled="false" the WCF service is running fine HTTPS. But the value of HttpContext.Current is null .
So, how can I get the HttpContext.Current value with HTTPS binding?
I follow this link
Can anyone help?
source share