Hi Glenn, as Julius suspected, the server doesn't respond with an HTTP status line.
> 2006-10-02 09:33:40 DEBUG header wire:69 >> "POST /xxxxxxx/xxxxxxx.cgi > HTTP/1.1[\r][\n]" > [...] > 2006-10-02 09:33:40 DEBUG content wire:83 >> *** DATA REMOVED *** > 2006-10-02 09:33:40 DEBUG EntityEnclosingMethod writeRequestBody:504 > Request body sent So far, so good. Now we're waiting for "HTTP/1.1 200 OK" or some such: > 2006-10-02 09:33:40 DEBUG HttpMethodBase readStatusLine:1823 enter > HttpMethodBase.readStatusLine(HttpState, HttpConnection) > 2006-10-02 09:33:41 DEBUG header wire:69 << "XXXXXXXXXXXXXXXXXXX=XX[\r] > [\n]" and this is what we get instead! It's not a status line, it's not a header line. Either the server is generating garbage, or you have a problem with thread synchronization. If multiple threads are using the same connection (which shouldn't be possible with the MultiThreadedHttpConnectionManager), then this could be explained as the response body for some other request. cheers, Roland --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
