gpt4 book ai didi

c# - 在 WCF Rest 中捕获 WebFaultException 的详细信息

转载 作者:行者123 更新时间:2023-11-30 14:18:46 26 4
gpt4 key购买 nike

我有一个抛出 WebFaultException 的服务器

try
{
...
}
catch (InvalidPasswordException)
{

throw new WebFaultException<String>
("This is a bad password",
HttpStatusCode.Unauthorized);
}

到目前为止一切顺利。然而,当这个 WebFault 被另一个 C# 项目(客户端)捕获时,我不知道如何获取详细信息。

try
{
HttpWebRequest httpWebRequest = WebRequest.Create(uri) as HttpWebRequest;

httpWebRequest.Method = verb;
httpWebRequest.ContentType = "text/xml";
httpWebRequest.ContentLength = serializedPayload.Length;

using (StreamWriter streamOut = new StreamWriter(httpWebRequest.GetRequestStream(), Encoding.ASCII))
{
streamOut.Write(serializedPayload);
streamOut.Close();
}

// error here on GetResponseStream
using (StreamReader streamIn = new StreamReader(httpWebRequest.GetResponse().GetResponseStream()))
{
string strResponse = streamIn.ReadToEnd();
streamIn.Close();
return strResponse;
}
}
catch (Exception e)
{
// The exception is of type WebException with unauthorized but don't know where the details are
}

此代码捕获了一个 WebException,我无法找到其详细信息,只是未经授权。

谢谢

更新 1:当我在 fiddler 中执行请求时,响应主体是详细信息,但由于在读取响应主体之前抛出该异常,因此它不会显示。所以问题是,尽管抛出了非 200,我如何读取响应正文。

Fiddler 原始响应:

HTTP/1.1 401 Unauthorized
Server: ASP.NET Development Server/10.0.0.0
Date: Tue, 12 Oct 2010 22:42:31 GMT
X-AspNet-Version: 4.0.30319
Content-Length: 100
Cache-Control: private
Content-Type: application/xml; charset=utf-8
Connection: Close

<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">Email/Password Mismatch</string>

最佳答案

我只是在猜测,但我认为您只需要检查 GetResponse() 结果的 .StatusCode 成员并且不要尝试调用 GetResponseStream() 除非它是 200。如果它是一个错误代码(401 in你的情况),那么错误详细信息应该在 GetResponse() 的 .Content 成员中。

类似于:

var r = httpWebRequest.GetResponse();
if(r.StatusCode != 200)
{
MessageBox.Show(r.Content); // Display the error
}
else
{
var streamIn = new StreamReader(r.GetResponseStream());
string strResponse = streamIn.ReadToEnd();
streamIn.Close();
return strResponse;
}

关于c# - 在 WCF Rest 中捕获 WebFaultException 的详细信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3919583/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com