我正在尝试使用WCF可靠会话来启用从服务到客户端的回调。此回调通道需要无限期打开。
在某些.NET版本中似乎存在一个错误,导致可靠会话过早出错。如果没有问题,只需将inactivityTimeout和receiveTimeout设置为足够高的值(例如TimeSpan.MaxValue
)。
但是,无论我如何配置我的客户端和服务,通道在10分钟后仍然会出现故障,无论我设置的超时值是多少。
如果没有我的配置,这个问题将是不完整的,所以它是这样的:
<!-- service's app.config -->
<!-- irrelevant stuff snipped .. -->
</binding>
<netTcpBinding>
<!-- enable reliable sessions, set timeouts to their maximum possible value!!! -->
<binding name="netTcpReliable" receiveTimeout="infinite">
<reliableSession enabled="true" inactivityTimeout="infinite"/>
</binding>
</netTcpBinding>
</binding>
<services>
<service name="SomeService" behaviorConfiguration="metadataBehavior">
<host>
<baseAddresses>
<add baseAddress="net.tcp://localhost:port/SomeService"/>
</baseAddresses>
</host>
<endpoint name="SomeService_BasicTcpEndpoint"
address="service"
binding="netTcpBinding"
bindingConfiguration="netTcpReliable"
contract="ISomeService" />
</service>
<services>
// client's binding generation code
var binding = new NetTcpBinding(SecurityMode.Transport, true) // enable reliable session
{
OpenTimeout = openCloseTimeout,
CloseTimeout = openCloseTimeout,
SendTimeout = sendTimeout,
ReceiveTimeout = TimeSpan.MaxValue // maximum possible value (infinite in app.config)
};
binding.ReliableSession.InactivityTimeout = TimeSpan.MaxValue; // maximum possible value (infinite in app.config)
var factory = new ChannelFactory<TChannel>(binding);
return factory.CreateChannel(endpointAddress);
因此,正如您所看到的,所有超时都被配置为高于10分钟的值,并且在没有任何服务调用的情况下,通道在10分钟后仍会发生故障。我该如何规避这一点?据我所知,可靠的会话(除其他外)正是用于此目的:保持通道活动并防止它们发生故障(通过发送基础设施保持活动数据包——至少在没有上述错误的最新.NET版本中是这样)。
您应该在编译期间收到警告,即无限值对于超时没有合法值。最大超时时间约为24天。