に問題があります。HttpClient
引き続き が発生しHttpRequestException occurred in mscorlib.dll
ます。以前の作業バージョンを SVN からダウンロードしましたが、同じ例外が引き続き発生します。
何週間も正常に動作しているコードを実行しているにもかかわらず、突然この例外が発生するのはなぜですか?
現在、この単純なコードでデバッグしようとしていますが、何をしても同じ例外が発生します
HttpClient client = new HttpClient();
client.DefaultRequestHeaders.Accept
.Add(new System.Net.Http.Headers.MediaTypeWithQualityHeaderValue(
"application/json"));
HttpResponseMessage response
= await client.GetAsync("http://api.themoviedb.org/3/movie/550?api_key=x");
return await response.Content.ReadAsStringAsync();
私のinnerExceptionは次のとおりです。
The remote name could not be resolved:
api.themoviedb.org System.Exception System.Net.WebException
試したすべての URL で同じ結果が得られ、それらはすべてブラウザで動作します。例外とスタック トレースは次のとおりです。
res "System.Net.Http.HttpRequestException: An error occurred while sending the request.
---> System.Net.WebException: The remote name could not be resolved: 'api.themoviedb.org'
at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult)
at System.Net.Http.HttpClientHandler.GetResponseCallback(IAsyncResult ar)
--- End of inner exception stack trace ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)