Re: URLGetMethod.executeMethod is hanging under multi threaded environment

2004-09-07 Thread Roland Weber
mons HttpClient Project <[EMAIL PROTECTED]> cc Subject Re: URLGetMethod.executeMethod is hanging under multi threaded environment Roland Weber wrote: [snip] >With your implementation and the SimpleHttpConnectionManager which is >used by default, a single download should succ

Re: URLGetMethod.executeMethod is hanging under multi threaded environment

2004-09-07 Thread Eric Johnson
Roland Weber wrote: [snip] With your implementation and the SimpleHttpConnectionManager which is used by default, a single download should succeed. All other downloads then wait for the connection that is never released by the first one. Did this change? Last time I checked, I thought that the

Re: URLGetMethod.executeMethod is hanging under multi threaded environment

2004-09-06 Thread Roland Weber
Hello, unfortunately, you left out the part where the HttpClient instance is created. Did you remember to install a MultiThreadedHttpConnectionManager? If the same client object is passed to several of the SaveAttachmentThread instances, you need the thread-safe connection manager. But the main