HttpWebRequestを開始してから、その応答を取得しています。ときどき、500(または少なくとも5 ##)のエラーが発生しますが、説明がありません。私は両方のエンドポイントを制御しており、受信側にもう少し情報を取得してもらいたいです。たとえば、サーバーからクライアントに例外メッセージを渡したいと思います。これはHttpWebRequestとHttpWebResponseを使用して可能ですか?
コード:
try
{
HttpWebRequest webRequest = HttpWebRequest.Create(URL) as HttpWebRequest;
webRequest.Method = WebRequestMethods.Http.Get;
webRequest.Credentials = new NetworkCredential(Username, Password);
webRequest.ContentType = "application/x-www-form-urlencoded";
using(HttpWebResponse response = webRequest.GetResponse() as HttpWebResponse)
{
if(response.StatusCode == HttpStatusCode.OK)
{
// Do stuff with response.GetResponseStream();
}
}
}
catch(Exception ex)
{
ShowError(ex);
// if the server returns a 500 error than the webRequest.GetResponse() method
// throws an exception and all I get is "The remote server returned an error: (500)."
}
これに関する助けをいただければ幸いです。