WCF - 我如何知道服务器(服务)端的连接何时丢失? (例如:客户端崩溃可能是由于某些致命异常)
我正在使用 NetNamedPipebinding 在两个进程之间进行通信。其中一个在端点提供服务,另一个进程使用 DuplexChannel 与其通信。
在某些情况下,我的客户端进程可能会崩溃。在这些情况下,我还需要终止服务进程。实现这一目标的最佳方法是什么?
从服务器端:
我正在考虑有一个计时器并在回调中调用 ping 方法。如果客户端没有响应 ping,我也可以关闭服务。有没有更好的解决方案?
I am using NetNamedPipebinding
to communicate between two processes. One of them provides a service at an end point and the other process using DuplexChannel
communicates with it.
In some scenario my client process might crash. In those scenarios I need to kill the service process as well. What is the best way to achieve it?
From server side:
I am thinking of having a timer and call the ping method on the callback. If client doesn't respond for ping, I can shut down the service as well. Is there any better solutions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我是创建服务(流程)的人。所以我只是将客户端进程的进程ID传递给服务器(服务进程)并监听Process.Exited事件。
I am the one who creates the service (process). So I simply passed the process ID of the client process to server (service process) and listen to Process.Exited event.