hello all,
I have a WCF service running on Windows Azure, with
SSL and require Certificate Authentication. (server config is as below)
After I deployed it into Azure, it returns me an error said "The SSL settings for the service 'SslRequireCert' does not match those of the IIS 'None'."
In IIS, I know there is a setting to enable SSLRequireCert.
But, in Azure , how do I change this option?
Thanks,
Leo
<wsHttpBinding>
<binding name="TransportWSHttpBinding">
<security mode="Transport">
<transport clientCredentialType="Certificate"/>
</security>
</binding>
</wsHttpBinding>