WCF - 异常处理

WCF 服务开发人员可能会遇到一些无法预料的错误,需要以适当的方式向客户端报告。此类错误称为异常,通常使用 try/catch 块进行处理,但同样,这是非常技术特定的。

由于客户端关注的领域不是错误如何发生或导致错误的因素,因此使用 SOAP 故障契约将错误消息从服务传达给 WCF 中的客户端。

故障契约使客户端能够记录服务中发生的错误。以下示例可以更好地理解。

步骤 1 − 使用除法运算创建一个简单的计算器服务,该操作将生成一般异常。

using System;
usingSystem.Collections.Generic;
usingSystem.Linq;
usingSystem.Runtime.Serialization;
usingSystem.ServiceModel;
usingSystem.Text;

namespace Calculator {
   // NOTE: You can use the "Rename" command on the "Refactor" menu to change 
   // the interface name "IService1" in both code and config file together.
   
   [ServiceContract]
   
   public interface IService1 {
      [OperationContract]
      int divide(int num1, int num2);
      // TODO: Add your service operations here
   }
}

类文件的代码如下所示 −

Wcf Exception Handling 2

现在,当我们尝试将数字 10 除以零时,计算器服务将引发异常。

Wcf Exception Handling 3

Wcf Exception Handling 4

可以通过 try/catch 块处理异常。

Wcf Exception Handling 5

现在,当我们尝试将任何整数除以 0,它将返回值 10,因为我们已在 catch 块中处理了它。

Wcf Exception Handling 6

步骤 2 − 此步骤中使用 FaultException 将异常信息从服务传达给客户端。

public int Divide(int num1, int num2) { 
   //Do something 
   throw new FaultException("Error while dividing number"); 
}
Wcf Exception Handling 7

步骤 3 − 还可以使用 FaultContract 创建自定义类型来发送错误消息。创建自定义类型的必要步骤如下 −

使用数据契约定义类型,并指定要返回的字段。

服务操作由 FaultContract 属性修饰。还指定了类型名称。

创建服务实例以引发异常,并分配自定义异常属性。