RE: Maximum length HTTP Request

2001-03-13 Thread Arendsen, Alef
SOMETHING (the actual logic, here it DOESN'T arrive anymore if the request is 2048) } -Original Message- From: Randy Layman [mailto:[EMAIL PROTECTED]] Sent: Monday, March 12, 2001 5:57 PM To: [EMAIL PROTECTED] Subject: RE: Maximum length HTTP Request If you

Re: Maximum length HTTP Request

2001-03-13 Thread Bo Xu
"Arendsen, Alef" wrote: Ok, thnx so far, but I'm 100% sure I'm using a post. It's not a form, but I'm using my own socket impl. of the http protocol to make it support timeouts and stuff... here it is, this is what I'm sending through the outputstream of the socket. The GET-requests all

Re: Maximum length HTTP Request

2001-03-13 Thread Kevin Sangeelee
from the above email, I just Guess perhaps there is Also a "real-world Maximum length of POST"(from your email, it is 2048 ?) is it right? I don't think this is the case. A file-upload using multi-part form data uses POST, and the limits have to be imposed by the servlet (or whatever)

AW: Maximum length HTTP Request

2001-03-13 Thread Stefan Busse
PROTECTED]' Betreff: RE: Maximum length HTTP Request Ok, thnx so far, but I'm 100% sure I'm using a post. It's not a form, but I'm using my own socket impl. of the http protocol to make it support timeouts and stuff... here it is, this is what I'm sending through the outputstream of the socket

Maximum length HTTP Request

2001-03-12 Thread Arendsen, Alef
Hi all, I'm doing an HTTP request on a Servlet running in Tomcat 3.2.1 and I'm encountering problems with the length. It's a POST request using parameters after the URL. Problem is, when the request exceeds 2 Kilobyte, Tomcat won't receive it!!! At least the HttpRequest doesn't finish so it

RE: Maximum length HTTP Request

2001-03-12 Thread Randy Layman
hould look at the URLConnection class, I believe. You can find more information by searching this list's archives. Randy -Original Message- From: Arendsen, Alef [mailto:[EMAIL PROTECTED]] Sent: Monday, March 12, 2001 11:45 AM To: '[EMAIL PROTECTED]' Subject: Maximum length HTTP Request Hi