gpt4 book ai didi

c# - 捕获 WebService 抛出的 SoapException

转载 作者:太空狗 更新时间:2023-10-29 21:06:52 25 4
gpt4 key购买 nike

我写了以下服务:

namespace WebService1
{
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
public class Service1 : System.Web.Services.WebService
{
[WebMethod]
public string Test(string str)
{
if (string.IsNullOrEmpty(str))
throw new SoapException("message", SoapException.ClientFaultCode);
else
return str;
}
}
}

还有一个测试它的基本应用程序(一个按钮在点击事件时调用 Test 方法):

private void button1_Click(object sender, EventArgs e)
{
ServiceReference1.Service1SoapClient ws = new WindowsFormsApplication1.ServiceReference1.Service1SoapClient();

try
{
ws.Test("");
}
catch (SoapException ex)
{
//I never go here
}
catch (FaultException ex)
{
//always go there
}
catch (Exception ex)
{

}
}

我想捕获我的 WebService 抛出的 SoapException,但我总是转到 FaultException 捕获 block 并将其作为消息获取:

System.Web.Services.Protocols.SoapException: message at WebService1.Service1.Test(String str) in [...]WebService1\WebService1\Service1.asmx.cs:line 25

我怎样才能捕捉到真正的 SoapException 而不是 FaultException? WebService 中有什么我想念的吗?

最佳答案

我认为主要的“问题”是您正在使用连接到 ASP.NET Web 服务 (.asmx) 的 WCF 服务引用。

处理此问题的“最简单”方法可能是在客户端上使用 Web 引用而不是 WCF 服务引用。为此,您可以选择“添加服务引用”对话框底部的“高级”按钮,然后选择该屏幕底部的“添加 Web 引用”。我相信使用 Web 引用应该会给您一个 SoapException。

正确的方法(如果您想听从 Microsoft 的建议)是发布 WCF 服务而不是 .asmx 服务。那是另外一章了..

关于c# - 捕获 WebService 抛出的 SoapException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5005314/

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