[EMAIL PROTECTED] wrote: > Is HTTP Client (and HTTPClient class in particular) thread-safe? > Can I use a single instance to retrieve pages from multiple URLs without getting >responses mixed up?
I do not believe the HttpClient class is thread safe. To work around this problem, acquire the state object from the HttpClient, create method objects and execute them as opposed to relying on the HttpClient.executeMethod method. Paul -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
