サーバーに次のコードがあります
<services>
<service name="ME.Streets.WebGateway.DuplexService.DuplexService"
behaviorConfiguration="sb">
....
<endpoint
address=""
binding="webHttpBinding"
behaviorConfiguration="webHttpEndpointBehavior"
contract="ME.Streets.WebGateway.DuplexService.Interface.IPolicyRetriever"/>
....
<host>
<baseAddresses>
<add baseAddress="https://localhost:10201" />
</baseAddresses>
</host>
</service>
SilverlightアプリケーションをSSLとWCFを使用してHTTPSに切り替えていますが、サーバーを実行すると、次のエラーが発生します
- System.InvalidOperationException: Could not find a base address that matches
scheme http for the endpoint with binding WebHttpBinding. Registered base address
schemes are [https].
このエラーがどこから来ているのかよくわかりません。<baseaddress>
ノード内にhttpsノードをインストールする必要があり<service>
ますか?