使用企业库6异常处理应用程序阻止与WCF?

时间:2013-05-08 14:42:26

标签: wcf exception-handling enterprise-library

我将这三个软件包加载到我的WCF服务项目中:

  

EnterpriseLibrary.Common版本6.0.1304.0
  EnterpriseLibrary.ExceptionHandling 6.0.1304.0
  EnterpriseLibrary.ExceptionHandling.WCF版本6.0.1304.0

这是服务接口和MyTestFault DataContract:

[ServiceContract]
public interface IRepairService
{
    [OperationContract]
    [FaultContract(typeof(MyTestFault))]
    string SaveRepairCode(string failureCode, string description);
}

[DataContract]
public class MyTestFault
{
    #region Member Fields

    private string _message = "An unexpected error occured while executing the service method.";

    #endregion

    #region Properties

    [DataMember]
    public string Message
    {
        get { return _message; }
        set { _message = value; }
    }

    #endregion

    #region Constructor(s)

    public MyTestFault() { }

    #endregion
}

以下是该服务的实施:

[ExceptionShielding("TestPolicy")]
public class RepairService : IRepairService
{
    #region Private members

    private WimDAL wimDAL;
    ExceptionManager exManager;

    #endregion

    #region Constructor(s)

    public RepairService()
    {
        wimDAL = new WimDAL();

        var testPolicy = new List<ExceptionPolicyEntry>
        {
            {
                new ExceptionPolicyEntry(
                    typeof(SqlException), 
                    PostHandlingAction.ThrowNewException, 
                    new IExceptionHandler[]
                    {
                        new FaultContractExceptionHandler(
                            typeof(MyTestFault), 
                            "SqlException Occurred.",
                            new NameValueCollection(){ { "Message", "Message" }})
                    }) 
            },
            {
                new ExceptionPolicyEntry(
                    typeof(Exception), 
                    PostHandlingAction.ThrowNewException, 
                    new IExceptionHandler[]
                    {
                        new FaultContractExceptionHandler(
                            typeof(MyTestFault), 
                            "Exception Occurred.",
                            new NameValueCollection(){ { "Message", "Message" }})
                    }) 
            }
        };

        var policies = new List<ExceptionPolicyDefinition>();
        policies.Add(new ExceptionPolicyDefinition(
            "TestPolicy", testPolicy));

        exManager = new ExceptionManager(policies);
    }

    #endregion

    /// <summary>
    /// Insert a new fail code with description into RPCODE.
    /// Duplicate primary key will throw SqlException that should be processed by EHAB
    /// </summary>
    public string SaveRepairCode(string failureCode, string description)
    {
        using (TransactionScope txScope = new TransactionScope())
        {
            WimSQLCommand sc = new WimSQLCommand() { StoredProcedure = "Repair.RPCODE_Insert" };

            sc.Parameters.Add(new SqlParameter("@FailureCode", failureCode));
            sc.Parameters.Add(new SqlParameter("@Desc", description));

            exManager.Process(() => wimDAL.Execute_NonQueryNoReturn(sc), "TestPolicy");

            txScope.Complete();
            return "<Save_Repair_Code></Save_Repair_Code>";
        }
    }
}

现在,我有一个TestClient控制台应用程序,该应用程序是同一项目的一部分,该项目具有对项目和服务引用的引用。从那里我调用SaveRepairCode()方法并尝试捕获特定的错误异常,如下所示:

ServiceReference1.RepairServiceClient r = new ServiceReference1.RepairServiceClient();

Console.WriteLine("Enter a new repair code:");
string repairCode = Console.ReadLine();
Console.WriteLine("Enter description:");
string description = Console.ReadLine();

try
{
    r.SaveRepairCode(repairCode, description);
}
catch (FaultException<MyTestFault> ex)
{
    //do something
    throw;
}
catch (FaultException fex)
{
    //do something
    throw;
}

最后,我运行控制台应用程序并尝试保存重复的修复代码。我知道通过调试,这会导致SqlException发生。在我跳过SqlException之后,我看到“FaultContractWrapperException未被用户代码处理”异常,并且它具有我在“SqlException出现”策略中指定的消息。当我走过去时,我会回到客户端看到这个错误:

未处理CommunicationException
服务器没有提供有意义的回复;这可能是由于合同不匹配,过早的会话关闭或内部服务器错误造成的。

PS - 这是带有WCF的Enterprise Library 6,我没有对web.config进行手动更改...是的,includeExceptionDetailInFaults设置为false。

我在这里缺少什么?提前谢谢。


更新
看起来我在实例化新的ExceptionManager之后错过了这一行代码。

ExceptionPolicy.SetExceptionManager(exManager);

很高兴看到这一行代码不在企业库6 - 2013年4月.chm中,但它位于第26页的第26页的“Microsoft Enterprise Library-Preview.pdf的开发人员指南”中。一行我进入客户端正确的FaultException catch。

话虽如此,我仍然无法在客户端上获得其他MyTestFault属性。例如,如果我将公共字符串StoredProcedureName添加到MyTestFault并将其映射到SqlException的“Procedure”属性,我总是在客户端上看到null。对此策略的唯一更改是添加映射,如下所示:

new NameValueCollection(){ { "Message", "{Message}" }, { "StoredProcedureName", "{Procedure}" } }

1 个答案:

答案 0 :(得分:0)

事实证明这条线是罪魁祸首。

exManager.Process(() => wimDAL.Execute_NonQueryNoReturn(sc), "TestPolicy");

使用ExceptionManager的Process方法,只需执行你期望潜在异常的命令就可以了。

wimDAL.Execute_NonQueryNoReturn(sc);

这不符合“Microsoft Enterprise Library-Preview.pdf开发人员指南”所说的,但我想文档仍在进行中。我希望这有助于其他人。