获取错误状态码的响应体
本文关键字:响应 取错误 状态 获取 | 更新日期: 2023-09-27 18:03:35
我基本上是在寻找同样的事情在这里问:当服务器返回错误时,使用WebClient访问响应体的任何方法?
但到目前为止还没有答案。
服务器返回一个"400个错误请求"状态,但是作为响应体有一个详细的错误解释。
对使用。net WebClient访问这些数据有什么想法吗?它只是在服务器返回错误状态码时抛出异常。
你不能从web客户端获得它,但是在你的webeexception上你可以访问响应对象,将其转换为HttpWebResponse对象,你将能够访问整个响应对象。
请参阅webeexception类定义获取更多信息。
下面是来自MSDN的一个例子(为了清晰起见,增加了阅读web响应的内容)
using System;
using System.IO;
using System.Net;
public class Program
{
public static void Main()
{
try {
// Create a web request for an invalid site. Substitute the "invalid site" strong in the Create call with a invalid name.
HttpWebRequest myHttpWebRequest = (HttpWebRequest) WebRequest.Create("invalid URL");
// Get the associated response for the above request.
HttpWebResponse myHttpWebResponse = (HttpWebResponse) myHttpWebRequest.GetResponse();
myHttpWebResponse.Close();
}
catch(WebException e) {
Console.WriteLine("This program is expected to throw WebException on successful run."+
"'n'nException Message :" + e.Message);
if(e.Status == WebExceptionStatus.ProtocolError) {
Console.WriteLine("Status Code : {0}", ((HttpWebResponse)e.Response).StatusCode);
Console.WriteLine("Status Description : {0}", ((HttpWebResponse)e.Response).StatusDescription);
using (StreamReader r = new StreamReader(((HttpWebResponse)e.Response).GetResponseStream()))
{
Console.WriteLine("Content: {0}", r.ReadToEnd());
}
}
}
catch(Exception e) {
Console.WriteLine(e.Message);
}
}
}
您可以像这样检索响应内容:
using (WebClient client = new WebClient())
{
try
{
string data = client.DownloadString(
"http://your-url.com");
// successful...
}
catch (WebException ex)
{
// failed...
using (StreamReader r = new StreamReader(
ex.Response.GetResponseStream()))
{
string responseContent = r.ReadToEnd();
// ... do whatever ...
}
}
}