mod_jk - querystring

2006-06-09 Thread Arnar Gestsson

Hi,

I have a setup of Apache2.0.54, mod_jk1.2.15 and tomcat 4.1.31 and I'm 
requesting page with a long querystring, as soon as it becomes longer 
than 3200chars the application seems to break.  I've somewhere seen that 
querystring can be upto 8K  So I'm wondering if mod_jk has further 
limits. I'm looking for causes in the application but have not been 
successful finding bug so I wonder.


TIA

Arnar Gestsson

-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: mod_jk - querystring

2006-06-09 Thread Marc Farrow

In my experience in the past, 3200 chars was a more than I could ever get a
successful get method.  It would always truncate the query string.  How are
are you submitting the data?  Can you change it to use a form/post
submission?

On 6/9/06, Arnar Gestsson [EMAIL PROTECTED] wrote:


Hi,

I have a setup of Apache2.0.54, mod_jk1.2.15 and tomcat 4.1.31 and I'm
requesting page with a long querystring, as soon as it becomes longer
than 3200chars the application seems to break.  I've somewhere seen that
querystring can be upto 8K  So I'm wondering if mod_jk has further
limits. I'm looking for causes in the application but have not been
successful finding bug so I wonder.

TIA

Arnar Gestsson

-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





--
Marc Farrow


Re: mod_jk - querystring

2006-06-09 Thread Seak, Teng-Fong

Arnar Gestsson wrote:

Hi,

I have a setup of Apache2.0.54, mod_jk1.2.15 and tomcat 4.1.31 and I'm 
requesting page with a long querystring, as soon as it becomes longer 
than 3200chars the application seems to break.  I've somewhere seen 
that querystring can be upto 8K

   Actually, there's no limit on the length:
http://rfc.net/rfc2616.html#s3.2.1

   But it's very unwise to use excessively long URI.  I agree with some 
authors that 100 to 200 characters are long enough for GET.  Use POST 
instead:

http://htmlhelp.com/reference/html40/forms/form.html
  So I'm wondering if mod_jk has further limits. I'm looking for 
causes in the application but have not been successful finding bug so 
I wonder.


TIA

Arnar Gestsson



-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]