WCF wsDualHttpBinding停止发送回调

时间:2016-04-28 08:35:08

标签: c# wcf wsdualhttpbinding

我正在开发与地磅相连的WCF服务。 我们希望在重量改变时向所有连接的客户发送消息。 一个地磅只能连接一个客户端,所以我开发了WCF,通过wsDualHttpBinding和回调与客户端进行通信。

此解决方案有效,但经过很长时间(1-2天)后,WCF服务停止发送回调。 我知道我的服务有效,因为我有记录器 - 但我的客户没有收到回调。我的服务也不会抛出异常。

这是我的服务pseduo代码

[ServiceBehavior(ConcurrencyMode = ConcurrencyMode.Reentrant, InstanceContextMode = InstanceContextMode.PerSession)]
public sealed class WeightbridgeService : IWeightbridgeService, IDisposable


 public WeightbridgeService()
 {
        this.callback = OperationContext.Current.GetCallbackChannel<IWeightbridgeServiceCallback>();
        weighbridge.WeightChanged += WeightChangedEventHandler;
        timer.Elapsed += TimerOnElapsed;
        timer.Start();
 }

 private void TimerOnElapsed(object sender, ElapsedEventArgs elapsedEventArgs)
 {
            timer.Stop();
            this.callback.SendWeightData(this.weightData);
            timer.Start();
 }

和配置

 <bindings>
      <wsDualHttpBinding>
        <binding name="longTimeoutBinding" receiveTimeout="00:45:00" sendTimeout="00:45:00" openTimeout="00:45:00" closeTimeout="00:45:00" >
          <reliableSession inactivityTimeout="00:45:00" />
          <security mode="None"/>
        </binding>
      </wsDualHttpBinding>
    </bindings>
你能帮我解决我做错了什么吗? 我无法找到它的解决方案。

1 个答案:

答案 0 :(得分:0)

您可以将receiveTimeout属性添加到SERVICE配置文件中的绑定中。虽然它的名称是receiveTimeout,但它是服务器用于关闭“非活动”客户端连接的值(时间量)。

示例:

<binding name="wsDualHttpBinding" 
             closeTimeout="00:01:00" 
             openTimeout="00:01:00" 
             receiveTimeout="02:00:00"> <-- this is the amount of time to wait before droppin client connection