In my application, client can request service from server side while server can send events to client side.
In .NET remoting the event mechanism is implemented by bi-directional channels, while in this case the actual client plays another role of "server" for events. Normally the client will open a free port for this kind of communication.
When I run the netstat CMD in server side, I can see this server established many connection to others clients via different ports.
My problem is when some clients are closed out, the connection to the above ports of those clients shall not be visible again. But actually not...
Anybody know how to release the connection from server to clients?