Close

Https with BasicHTTPBinding - Note to Self

So if you are looking to implement SSL using basicHttpBinding for your WCF service, look no further. Here is your config file settings The modified basicHttpBindinging to allow security mode = Transport <bindings>            <basicHttpBinding>                <binding name="defaultBasicHttpBinding">                    <security mode="Transport">                        <transport clientCredentialType="None"/>       …

Share