WCF 接続のエンドポイントをプログラムで設定しようとしています。
以下は、私が使用しているコードです。誰かが何が問題なのかを特定するのに役立ちますか?
Uri wsBaseAddress = new Uri("http://localhost:27198/");
ServiceHost host = new ServiceHost(typeof(ServiceClient), wsBaseAddress);
WSHttpBinding wshttpbinding = new WSHttpBinding();
host.AddServiceEndpoint(typeof(IService), wshttpbinding, "ServiceClient");
host.AddServiceEndpoint(typeof(IService), wshttpbinding,
"http://localhost:27198/Service.svc");
host.Open();
編集:
エラー: TCP ポート 27198 が別のアプリケーションで使用されているため、HTTP は URL "http://+:27198/" を登録できませんでした。
ありがとうございました