Hi all,
I have a server that basically caters to multiple clients. I am basically using gzip(input/output)stream to compress the data between client-server.
Many clients can send the requests to server at the same time and hence i have a thread to cater to each client.
Now, the problem tat i am experiencing is that "randomly" some client code fails whenever it tries to execute following after the connection to the server has been established.
`GZIPInputStream in = new GZIPInputStream(server.getInputStream());`
I get java.io.EOFException.
And when i say randomly, i mean there is no pattern that i can find in the exception. The requests are being send properly (else it would not work for any client requests).
I have searched a lot..but couldnt find anything.. :(
Any pointers on the above problem ??
Thanks,