Wednesday, February 1, 2012

SSL access configuration for WCF

SSL will be used when Transport is set for wsHttpBinding



Apparently if mode is set to 'None' then any security requirements which would include SSL will be removed.
     <wsHttpBinding>
        <binding>
          <security mode="None">
            <transport clientCredentialType="None" />
          </security>
        </binding>
      </wsHttpBinding>

No comments:

Post a Comment