July updates huge problems with closing ports and services

C

Cásper

HI.

Since last update on Windows server 2012, we are having serious problems with services that listen to TCP ports. Once a service is stopped, the ports that where in use by this service in unreacheable again, the process cannot be killed and the only way to restart service is by restarting entire server!. For example this code generates the error "Only one usage of each socket address"

localEndPoint = New IPEndPoint(IPAddress.Any, puertoEscucha)
listener = New Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp)
listener.Bind(localEndPoint)

this is really urgent bug!!!

Continue reading...
 
Back
Top Bottom