SecurityMode: transport (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>