私はBing Maps Webサービスを使用する小さなアプリケーションを作成しようとしています。私は情報を取得するためにサーバーを接続しようとすると、私はエラーを取得:Bing Maps Webサービスでリッスンしているエンドポイントがありません
There was no endpoint listening at http://dev.virtualearth.net/webservices/v1/searchservice/searchservice.svc that could accept the message. This is often caused by an incorrect address or SOAP action."
問題は何ですか?私のネットワークプロキシが原因かもしれませんか?
それは助けることができる場合は、エラーが行で発生します。
SearchResponse searchResponse = searchResponse = searchService.Search(searchRequest);
.configファイルが<cliente>
のコードがあります:あなたがプロキシでネットワーク上にあるので
<endpoint address="http://dev.virtualearth.net/webservices/v1/searchservice/searchservice.svc"
binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_ISearchService"
contract="SearchService.ISearchService" name="BasicHttpBinding_ISearchService" />
プロキシを使用してネットワークに接続しているため、ここで指定されているプロキシアドレスを指定するdefaultProxy要素を追加する必要があります。http://msdn.microsoft.com/en-us/library/kd3cf2ex aspxの – Rajesh