I currently have the following WCF Binding. The web service is being called from a SharePoint Application Page using AJAX.Net. Anonymous Access is turned off from within Central Administration.
<configuration>
<system.serviceModel>
<bindings>
<webHttpBinding>
<binding
name="webHttpBinding_BdcHelper"
maxBufferSize="5242880"
maxReceivedMessageSize="5242880" >
<security mode="TransportCredentialOnly">
<transport clientCredentialType="Ntlm" />
</security>
</binding>
</webHttpBinding>
</bindings>
It works fine for HTTP but it is failing with HTTPS. The issue I have is a 401 Unauthorized exception. I have tried other configurations such as the one suggested here - WCF Bindings Needed For HTTPS but no luck.
What do I need to do to the config to get this to work? Thanks