I use N servers ,everyone accept tcp connection by M client.
This process is iterated k times, and I some times have bind Exception in ServerSocket creation.
sock = new ServerSocket(port,700);
The value of variable port is in this interval 50000+[0..N], the problem is that at each iteration of the process (cycle in k) the value of port is the same, so I have that some ports is opened yet by the past cycle, and bindException is thrown.
I can't change interval of port value at each cycle, and I'm sure that all sockets are closed by close() call at each cycle. I think that my program is too fast at do a cycle and create a new socket then the stack JAva VM-Windows 7, to release tcp ports...
Is there a method to speed the ports release after close() ??
