Re: Cookies, Chunked-Post Threads

2003-11-11 Thread Andreas Probst
Hi Sven, Regarding the thread safeness, I suggest try using MultiThreadedHttpConnectionManager. Instance it and put into HttpClient's constructor. Regards. Andreas On 12 Nov 2003 at 1:55, Sven Köhler wrote: Hi, i'm working on a so called ProxyServlet which uses the Information provided by

Re: [HttpClient] reuse connections

2003-08-27 Thread Andreas Probst
HttpClient's particular behavior here stems from Java's inability to detect closed connections prior to JRE 1.4. The only way to determine whether a connection is closed is to actually read or write to the connection, which is exactly what isStale() does. -Eric. Andreas Probst wrote: Hi all