RE: 500 Server Error from IIS 4.0 with large Content-Length

2003-11-11 Thread Kaufmann, Scott
Figured it out. Needed to use setStrictMode(true). Seems to be working now. Thanks for the suggestions. Scott -Original Message- From: Kaufmann, Scott Sent: Mon 11/10/2003 3:07 PM To: [EMAIL PROTECTED] Cc: Subject: 500 Server Error from IIS 4.0 with large Content-Length I'm us

RE: 500 Server Error from IIS 4.0 with large Content-Length

2003-11-11 Thread Kalnichevski, Oleg
Scott, Try using chunk-encoding and see if makes any difference http://jakarta.apache.org/commons/httpclient/apidocs/org/apache/commons/httpclient/methods/EntityEnclosingMethod.html#CONTENT_LENGTH_CHUNKED http://cvs.apache.org/viewcvs.cgi/jakarta-commons/httpclient/src/examples/ChunkEncodedPost.ja

Re: 500 Server Error from IIS 4.0 with large Content-Length

2003-11-11 Thread Ortwin Glück
Kaufmann, Scott wrote: I'm using 2.0-rc2 of http client to mimic a form based application. Everything works fine until the Content-Length of my post gets above ~45K. Then I get an IIS 4.0 genereated 500 Server Error with the response body reading: ErrorNot enough storage is available to comple

RE: 500 Server Error from IIS 4.0 with large Content-Length

2003-11-10 Thread Kaufmann, Scott
--Original Message- From: Michael Becke [mailto:[EMAIL PROTECTED] Sent: Mon 11/10/2003 9:00 PM To: Commons HttpClient Project Cc: Subject: Re: 500 Server Error from IIS 4.0 with large Content-Length Hi Scott, If you are performing a file upload, the browser is probably using a mult

Re: 500 Server Error from IIS 4.0 with large Content-Length

2003-11-10 Thread Michael Becke
Hi Scott, If you are performing a file upload, the browser is probably using a multipart post. HttpClient supports multipart posts. Please take a look at and