DO NOT REPLY [Bug 27434] New: - Deadlock with MultiThreadedHttpConnectionManager

2004-03-04 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=27434. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

RE: Streaming requests

2004-03-04 Thread Rezaei, Mohammad A.
Please take a look at: http://nagoya.apache.org/bugzilla/show_bug.cgi?id=26070 The code attached to that bug report has been thoroughly tested and does provide you with an OutputStream. Implement OutputStreamWriter and simply write to the provided OutputStream. Do not close the stream. Thanks

[Fwd: Re: Once again 302 :(]

2004-03-04 Thread Thorsten Scherler
---BeginMessage--- Michael Becke wrote: Hi Thorsten, Not sure what's happening here. I'm trying under RedHat and all is well. I installed the log4j and traced down the problem: You said for you is working fine! My local maschine (windows) as well is working fine with both addresses! ...but

DO NOT REPLY [Bug 27434] - Deadlock with MultiThreadedHttpConnectionManager

2004-03-04 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=27434. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 26070] - [RFE] Allow streaming of POST methods via chunked transfer encoding.

2004-03-04 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=26070. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

HTTPClient hangs

2004-03-04 Thread Arun G
Hi folks, I am using multipart form post to upload a file. The server side is production code that we are using to upload files with other modules using multipart form post. The failure/hang is happening only with the HTTP Client code that I have pasted here. Also it is worth noting that the

Re: HTTP client hang

2004-03-04 Thread Michael Becke
Hi Tony, There appears to be some strange things happening in your wire log. Are you executing multiple requests at the same time? Please post the code (or an approximation) of the code that elicits the problem. Mike On Mar 4, 2004, at 10:50 AM, Tony Thompson wrote: Mike, I was able to

Re: HTTPClient hangs

2004-03-04 Thread Michael Becke
Hi Arun, It seems that the server never responds to the request. My only guess is that it's related to inconsistencies with how different servers handle multi part posts. In particular, some servers seem to have trouble with content-type and transfer encoding. Please try setting both of

Re: HTTP client hang

2004-03-04 Thread Tony Thompson
Mike, It is possible that multiple request are being executed at the same time. I am using the MultiThreadedHttpConnectionManager so, I assumed that was allowed. I don't think that I can come up with any code that could approximate this situation either. I have never seen an issue like this

Re: HTTPClient hangs

2004-03-04 Thread Arun G
Never mind my post. I just figured out I was using a wrong version of a modified HTTPClient. Sorry I wasted your time. Ignore my previous post. Regards, Arun --- Michael Becke [EMAIL PROTECTED] wrote: Hi Arun, It seems that the server never responds to the request. My only guess is that