The SSL settings for the service 'SslRequireCert' does not match those of the IIS 'None'.

Beantwortet The SSL settings for the service 'SslRequireCert' does not match those of the IIS 'None'.

  • Wednesday, February 16, 2011 1:33 PM
     
      Has Code

    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>
    

All Replies