AW: HTTP POST request: maximum allowed data?

2001-11-15 Thread Ralph Einfeldt
With POST I don't know any size restrictions. We have used post requests to upload several hundred KBytes. With GET there are size restrictions which are limited by the browser, the http server and sometimes even by the proxies between the browser and your web server. The limit is typically a

Re: AW: HTTP POST request: maximum allowed data?

2001-11-15 Thread Sonia Galilea Varea
Hi Ralph, Sorry for not having explained well, but what I exactly do is: What I exactly do is: FORM NAME=form1 ACTION=javascript:myFunc() METHOD=post INPUT TYPE=hidden NAME=myQuery VALUE=myquery ... /FORM and in my javascript file: function myFunc() { myWin =

AW: AW: HTTP POST request: maximum allowed data?

2001-11-15 Thread Ralph Einfeldt
:[EMAIL PROTECTED]] Gesendet: Donnerstag, 15. November 2001 12:11 An: Tomcat Users List Betreff: Re: AW: HTTP POST request: maximum allowed data? Hi Ralph, Sorry for not having explained well, but what I exactly do is: What I exactly do is: FORM NAME=form1 ACTION

AW: AW: HTTP POST request: maximum allowed data?

2001-11-15 Thread Ralph Einfeldt
Users List Betreff: Re: AW: HTTP POST request: maximum allowed data? Hi Ralph, Sorry for not having explained well, but what I exactly do is: What I exactly do is: FORM NAME=form1 ACTION=javascript:myFunc() METHOD=post INPUT TYPE=hidden NAME=myQuery VALUE=myquery

Re: AW: AW: HTTP POST request: maximum allowed data?

2001-11-15 Thread Sonia Galilea Varea
NAME=query VALUE=myquery ... /FORM -Ursprüngliche Nachricht- Von: Sonia Galilea Varea [mailto:[EMAIL PROTECTED]] Gesendet: Donnerstag, 15. November 2001 12:11 An: Tomcat Users List Betreff: Re: AW: HTTP POST request: maximum allowed data? Hi Ralph, Sorry

AW: AW: AW: HTTP POST request: maximum allowed data?

2001-11-15 Thread Ralph Einfeldt
Varea [mailto:[EMAIL PROTECTED]] Gesendet: Donnerstag, 15. November 2001 13:52 An: Tomcat Users List Betreff: Re: AW: AW: HTTP POST request: maximum allowed data? Hi Ralph, I don't understand your solution. I think WindowForm1 is the var which, in your javascript, you do

AW: HTTP POST request: maximum allowed data?

2001-10-02 Thread Ralph Einfeldt
If szData is the content of your textarea your are just doing a get. To post something you need a form with method=post The Post request has no maximal size (at least none that I know). Get is limited by apache by some 1400 bytes, what the spec says I haven't looked for.