私は次のサービスを書きました:
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
そしてそれをテストするための基本的なアプリケーション(クリックイベントでメソッドを呼び出す1つのボタン):
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
キャッチブロックに移動してメッセージとして取得します。
System.Web.Services.Protocols.SoapException:[...] WebService1 \ WebService1 \ Service1.asmx.cs:line 25のWebService1.Service1.Test(String str)でのメッセージ
どうすれば本物を捕まえることができSoapException
ますFaultException
か?Webサービスで見逃しているものはありますか?