How can I tell that a NetTcp-based WCF connection was interrupted?
- by mafutrct
A WCF service is based on NetTcpBinding. It may happen that the client silently vanishes, leaving the server thinking that it is still connected.
I'm currently using a thread that pings all connected client to see if they are still alive, and removes disconnected clients.
Is a ping thread the correct way to solve the issue, or is there a better,…