49

我正在尝试在 SO 上扩展此答案,以使 WCF 客户端在瞬态网络故障时重试,并处理其他需要重试的情况,例如身份验证过期。

问题:

需要处理的 WCF 异常有哪些,处理它们的正确方法是什么?

以下是我希望看到的一些示例技术,而不是或除了proxy.abort()

  • 重试前延迟 X 秒
  • 关闭并重新创建一个 New() WCF 客户端。处理旧的。
  • 不要重试并重新抛出此错误
  • 重试N次,然后抛出

由于一个人不太可能知道所有异常或解决它们的方法,因此请分享您所知道的。我将在下面的代码示例中汇总答案和方法。

    // USAGE SAMPLE
    //int newOrderId = 0; // need a value for definite assignment
    //Service<IOrderService>.Use(orderService=>
    //{
    //  newOrderId = orderService.PlaceOrder(request);
    //}




    /// <summary>
    /// A safe WCF Proxy suitable when sessionmode=false
    /// </summary>
    /// <param name="codeBlock"></param>
    public static void Use(UseServiceDelegateVoid<T> codeBlock)
    {
        IClientChannel proxy = (IClientChannel)_channelFactory.CreateChannel();
        bool success = false;
        try
        {
            codeBlock((T)proxy);
            proxy.Close();
            success = true;
        }
        catch (CommunicationObjectAbortedException e)
        {
                // Object should be discarded if this is reached.  
                // Debugging discovered the following exception here:
                // "Connection can not be established because it has been aborted" 
            throw e;
        }
        catch (CommunicationObjectFaultedException e)
        {
            throw e;
        }
        catch (MessageSecurityException e)
        {
            throw e;
        }
        catch (ChannelTerminatedException)
        {
            proxy.Abort(); // Possibly retry?
        }
        catch (ServerTooBusyException)
        {
            proxy.Abort(); // Possibly retry?
        }
        catch (EndpointNotFoundException)
        {
            proxy.Abort(); // Possibly retry?
        }
        catch (FaultException)
        {
            proxy.Abort();
        }
        catch (CommunicationException)
        {
            proxy.Abort();
        }
        catch (TimeoutException)
        {
         // Sample error found during debug: 

         // The message could not be transferred within the allotted timeout of 
         //  00:01:00. There was no space available in the reliable channel's 
         //  transfer window. The time allotted to this operation may have been a 
         //  portion of a longer timeout.

            proxy.Abort();
        }
        catch (ObjectDisposedException )
        {
            //todo:  handle this duplex callback exception.  Occurs when client disappears.  
            // Source: https://stackoverflow.com/questions/1427926/detecting-client-death-in-wcf-duplex-contracts/1428238#1428238
        }
        finally
        {
            if (!success)
            {
                proxy.Abort();
            }
        }
    }
4

4 回答 4

23

编辑:多次关闭和重新打开客户端似乎效率低下。我在这里探索解决方案,如果找到,将更新和扩展此代码。(或者如果 David Khaykin 发布答案,我会将其标记为已接受)

经过几年的修补,下面的代码是我处理 WCF 重试和处理异常的首选策略(在看到来自 wayback 机器的这篇博客文章之后)。

我调查了每一个异常,我想用那个异常做什么,并注意到一个共同的特征;每个需要从公共基类继承的“重试”的异常。我还注意到每个使客户端进入无效状态的 permFail 异常也来自共享基类。

以下示例捕获客户端可以通过的每个 WCF 异常,并且可针对您自己的自定义通道错误进行扩展。

示例 WCF 客户端用法

生成客户端代理后,这就是实现它所需的全部内容。

Service<IOrderService>.Use(orderService=>
{
  orderService.PlaceOrder(request);
}

服务委托.cs

将此文件添加到您的解决方案中。无需更改此文件,除非您想更改重试次数或要处理的异常。

public delegate void UseServiceDelegate<T>(T proxy);

public static class Service<T>
{
    public static ChannelFactory<T> _channelFactory = new ChannelFactory<T>(""); 

    public static void Use(UseServiceDelegate<T> codeBlock)
    {
        IClientChannel proxy = null;
        bool success = false;


       Exception mostRecentEx = null;
       int millsecondsToSleep = 1000;

       for(int i=0; i<5; i++)  // Attempt a maximum of 5 times 
       {
           // Proxy cann't be reused
           proxy = (IClientChannel)_channelFactory.CreateChannel();

           try
           {
               codeBlock((T)proxy);
               proxy.Close();
               success = true; 
               break;
           }
           catch (FaultException customFaultEx)
           {
               mostRecentEx = customFaultEx;
               proxy.Abort();

               //  Custom resolution for this app-level exception
               Thread.Sleep(millsecondsToSleep * (i + 1)); 
           }

           // The following is typically thrown on the client when a channel is terminated due to the server closing the connection.
           catch (ChannelTerminatedException cte)
           {
              mostRecentEx = cte;
               proxy.Abort();
               //  delay (backoff) and retry 
               Thread.Sleep(millsecondsToSleep  * (i + 1)); 
           }

           // The following is thrown when a remote endpoint could not be found or reached.  The endpoint may not be found or 
           // reachable because the remote endpoint is down, the remote endpoint is unreachable, or because the remote network is unreachable.
           catch (EndpointNotFoundException enfe)
           {
              mostRecentEx = enfe;
               proxy.Abort();
               //  delay (backoff) and retry 
               Thread.Sleep(millsecondsToSleep * (i + 1)); 
           }

           // The following exception that is thrown when a server is too busy to accept a message.
           catch (ServerTooBusyException stbe)
           {
              mostRecentEx = stbe;
               proxy.Abort();

               //  delay (backoff) and retry 
               Thread.Sleep(millsecondsToSleep * (i + 1)); 
           }
           catch (TimeoutException timeoutEx)
           {
               mostRecentEx = timeoutEx;
               proxy.Abort();

               //  delay (backoff) and retry 
               Thread.Sleep(millsecondsToSleep * (i + 1)); 
           } 
           catch (CommunicationException comException)
           {
               mostRecentEx = comException;
               proxy.Abort();

               //  delay (backoff) and retry 
               Thread.Sleep(millsecondsToSleep * (i + 1)); 
           }


           catch(Exception e)
           {
                // rethrow any other exception not defined here
                // You may want to define a custom Exception class to pass information such as failure count, and failure type
                proxy.Abort();
                throw e;  
           }
       }
       if (success == false && mostRecentEx != null) 
       { 
           proxy.Abort();
           throw new Exception("WCF call failed after 5 retries.", mostRecentEx );
       }

    }
}
于 2012-02-28T20:48:45.707 回答
4

我在 Codeplex 上启动了一个具有以下功能的项目

  • 允许有效地重用客户端代理
  • 清理所有资源,包括 EventHandlers
  • 在双工通道上运行
  • 在每次呼叫服务上运行
  • 支持配置构造函数,或者通过工厂

http://smartwcfclient.codeplex.com/

这是一项正在进行中的工作,并且受到了非常多的评论。我将不胜感激有关改进它的任何反馈。

在实例模式下的示例用法:

 var reusableSW = new LC.Utils.WCF.ServiceWrapper<IProcessDataDuplex>(channelFactory);

 reusableSW.Reuse(client =>
                      {
                          client.CheckIn(count.ToString());
                      });


 reusableSW.Dispose();
于 2011-06-01T00:55:46.400 回答
2

我们有一个 WCF 客户端,可以处理服务器上几乎所有类型的故障。渔获物清单很长,但并非必须如此。如果仔细观察,您会发现许多异常是异常类(以及一些其他类)的子定义。

因此,如果您愿意,您可以简化很多事情。也就是说,以下是我们捕获的一些典型错误:

服务器超时
服务器太忙
服务器不可用。

于 2011-05-29T19:37:21.517 回答
2

以下链接可能有助于处理 WCF 异常:

http://www.codeproject.com/KB/WCF/WCFErrorHandling.aspx

http://msdn.microsoft.com/en-us/library/cc949036.aspx

于 2011-05-31T09:02:33.557 回答