Amit Shef wrote:This is basically all my code on the Server.class
The ClientServiceThread class is a nested class. And it is using variables that it did not declare -- which is assumed to be declared in the outer class (as static variables)... so, obviously, you haven't show us all your code.
Anyway, if you happened to do what I just described, then the issue is that your nested class instances are using the same static variables of the outer class, and stepping on each other.
Henry