Hello Hakan,
> if some thread gets connection timeout , let's say
> more than 5 times, thread just hangs. i donot use any
> retry manager or something like that. my threads do
> not reach run() method's exit block. i need to
> reinitiate stop all other threads and start again
> manually.
>
> what could be the reason ?
You probably do not release the connection if you get
a connection timeout. Make sure the call to release
the connection is in a finally{} block. Otherwise,
each connection timeout leaks a connection, and your
thread blocks when no more connections are available.
hope that helps,
Roland
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]