我想通过带有 SecurityMode: 传输 (SSL) 的 WebHttpBinding 公开合同的实现。
但是,当我尝试通过 Firefox 访问该站点时,我只得到
加载页面时与 localhost 的连接中断。
配置文件如下:
<configuration>
<system.serviceModel>
<services>
<service name="MyService">
<endpoint address="https://localhost"
binding="webHttpBinding"
contract="MyService"
bindingConfiguration="secureWebHttp">
</endpoint>
</service>
</services>
<bindings>
<webHttpBinding>
<binding name="secureWebHttp">
<security mode="Transport"/>
</binding>
</webHttpBinding>
</bindings>
</system.serviceModel>
</configuration>