ServerSocket Problem..
Hi.Is it possible for more than one thread having a ServerSocket instance each to listen at the same port and accept connections without affecting connections on other threads.?
# 6
Whatever that means. You don't need two ServerSockets on the same port to run two accepting threads. Both threads can accept from the same ServerSocket, if you think you have a good reason for doing that, such as multiple CPUs. If you don't have that there is no point in any of
ejpa at 2007-7-9 23:05:13 >
