我们正在构建一个WCF服务器(.NET 4.0)。它只会使用net.tcp传输。
当客户端关闭TCP连接时,服务器将获取未处理的CommunicationException,并终止。
Q1。如何处理CommunicationException以便服务器不会终止并继续为其他客户端提供服务?
Q2。在处理程序中,如何获取已中止的会话的SessionId?我需要这样做来清理一些特定于会话的数据。
提前致谢!
P.S。连接是通过Internet进行的,因此无论客户端是否正常断开连接,都可以随时关闭套接字。
答案 0 :(得分:22)
任何WCF频道都实现ICommunicationObject,它为频道有效期提供事件。
您应该收听Faulted事件
可以始终从OperationContext.Current属性访问sessionId。
当您的客户打开频道时(在第一次操作时),注册适当的事件:
OperationContext.Current.Channel.Faulted += new EventHandler(Channel_Faulted);
OperationContext.Current.Channel.Closed += new EventHandler(Channel_Faulted);
和
void Channel_Faulted(object sender, EventArgs e)
{
Logout((IContextChannel)sender);
}
protected void Logout(IContextChannel channel)
{
string sessionId = null;
if (channel != null)
{
sessionId = channel.SessionId;
}
[...]
}
答案 1 :(得分:-2)
ICommunicationObject obj = (ICommunicationObject)callback;
obj.Closed += new EventHandler((a, b) =>
{
if (list.Exists(cli => cli.CallbackService == (ITecnobelRemoteServiceCallback)a))
{
var query = (from cc in list where cc.CallbackService == (ITecnobelRemoteServiceCallback)a select cc).ToList();
query.ForEach(
delegate (Client ccc)
{
ccc.CallbackService = null;
});
}
});