My socket is closed when the reader/writer are closed... (using concurrnet)
hi all
I am using the concurrent package for JRE 1.4
My runnable is using a Thread Local socket which is opened for the first runnable that reaches each pooled thread.
I declare the BufferedWriter and BufferedReader at the runnable level
The strange thing is that when I close at the end of the execution of the runnable the BufferedWriter / BufferedReader the next time that I try to connect to the Socket (in the new runnable that uses the same pooled thread) its alreayd closed...
If i dont close them the socket remains open...
Thanks for your help !!

