Configuration binding extension 'system.serviceModel/bindings/basicHttpsBinding' could not be found

后端 未结 4 2001
旧时难觅i
旧时难觅i 2021-02-07 04:21

I am getting this error when I try to navigate to my .svc file. It appears that it\'s not finding my basicHttpsBinding; here\'s that section of my web.config:

&         


        
4条回答
  •  無奈伤痛
    2021-02-07 05:07

    BasicHttpsBinding is a new binding in .NET 4.5, therefore you cannot use it in a 4.0 application. Either you remove the protocolMapping or you use another binding such as basicHttpBinding or wsHttpBinding.

    When you configure SSL in IIS, this should work as well.

提交回复
热议问题