I have an server application that create a TcpChannel with a specific port number.
TcpChannel _tcpChannel = new TcpChannel("8090");
ChannelServices.RegisterChannel(_tcpChannel , false);
When the application close, it calls
ChannelServices.UnregisterChannel(_tcpChannel);
The problem I have is that a when this application crash on a Windows 2003 Server machine, it can't unregister the channel. When the user restart the application, and it gives them a "The channel 'tcp' is already registered" exception. There is only one instance of this application.
I tied to reproduce this on my Windows 7 64 machine. However, when the application close, or close due to a crash (manually thrown an exception in managed code), the TcpChannel seems to be automatically unregistered. Restarting the application doesn't give me any warning error. I also took out the ChannelServices.UnregisterChannel() calls, and my application can still re-register it.
My questions is: Is it true that TcpChannel or the port is automatically unregistered when the host application is killed on Windows 7, but not Windows 2003, or is it due to some configuration setting?