,欢迎访问网页设计爱好者web开发。当web services引发一个不在内部处理的异常时,异常将被传送到asp.net,来决定如何处理.
通常有两种:
1)将异常发往http客户端,asp.net将向客户端返回一条http internal server
error(内部错误,错误代码是500)消息,客户端根据消息进行处理.
2)将异常发往soap客户端
如果客户端使用soap协议,asp.net则先将其作为soap错误,然后传回客户端.使用soap代理的
客户端收到一个soap错误时,其响应方式与前一种差不多,不同的是soap代理引发的是system
.web.services.protocols.soapexception.,并将soapexception.code的值设置为soap
错误的faultcode字段(默认是服务器错误)的值,将soapexception.message属性设置为
faultstrin字段(默认是表示捕获异常的堆栈跟踪的字符串)的值.
但这种方法的缺点是无论web services抛出何种异常,客户端都是抛出soapexception.
解决的方法就不允许asp.net自动处理未被捕获的客户端绑定异常,web services必须捕获所有应用程序异常,并明确抛一个soapexceptionasp.net捕获时将正确地使用soapexception的code和message属性来填充soa的错误的faultcode和faultstring元素,这样,你就可以返回自定义错误代码,这些代码向客户端提供了有意义的错误信息,然后,客户端就可以捕获soapexception,并用soapexception.code属性提供的错误代码来执行适当的处理.不过这还是有缺陷,那就是客户端的开发人员必须知道怎么样处理这些代码,所以必须将这些信息放进系统文档.
自定义的错误代码
public sealed class e1 : applicationexception
{
public e1(string message):base(message)
{
//描述该错误的信息,不做任何事,依赖于基类
// todo: add constructor logic here
//
}
}
public sealed class e2 : applicationexception
{
public e2(string message):base(message)
{
//描述该错误的信息,不做任何事,依赖于基类
// todo: add constructor logic here
//
}
}
需要注意的是,soapexception.code属性并非一个字符串,而是system.xml.xmlqualifiedname
的一个实例,因此必须实例化它.如下:
using system.web;
using system.web.services;
using system.web.services.protocols;
using system.xml;
using system;
[webservicebinding(conformanceclaims=wsiclaims.bp10,emitconformanceclaims = true)]
public class service : system.web.services.webservice
{
xmlqualifiedname xname;
[webmethod]
public int causeexception(int num)
{
int n;
try
{
n=num;
if (n == 1)
{
throw new e1("erroe e1 happen");
}
if (n == 2)
{
throw new e2("erroe e2 happen");
}
}
catch(applicationexception ex)
{
throw getexception(ex);
}
return n;
}
private soapexception getexception(applicationexception exx)
{
if (exx is e1)
{
xname = new xmlqualifiedname("e1");
}
if (exx is e2)
{
xname = new xmlqualifiedname("e2");
}
return new soapexception(exx.message, xname);
}
}
客户端:
private void button1_click(object sender, eventargs e)
{
try
{
exception.service s = new testexception.exception.service();//实例化代理
if (this.radiobutton1.checked)
{
s.causeexception(1);//引发异常
}
if (this.radiobutton2.checked)
{
s.causeexception(2);
}
}
catch (soapexception ex)
{
switch(ex.code.tostring())//根据soapexception.code的值显示相应的消息
{
case "e1":messagebox.show("has error e1");
break;
case "e2":messagebox.show("has error e2");
break;
}
}
}
http://blog.csdn.net/marshine/archive/2004/03/25/17170.aspx
c#:web service异常处理的其他文章.