Re: Max URL length for 5.0.28

2005-04-09 Thread Behrang Saeedzadeh
I guess it's the standard (of HTTP?) that imposes the 255 max length limit on the size of URLs and not Tomcat. -Behi On Apr 9, 2005 1:08 AM, Jimmy Ray [EMAIL PROTECTED] wrote: Tomcat 5.0.28, HPUX Trying to use a URL that is 266 chars long and it seems to be truncated. Is there a max

Re: Max URL length for 5.0.28

2005-04-09 Thread Behrang Saeedzadeh
Sorry, I was wrong :p http://lists.evolt.org/archive/Week-of-Mon-20010528/033585.html http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.2 Regards, Behi. On Apr 9, 2005 4:12 PM, Behrang Saeedzadeh [EMAIL PROTECTED] wrote: I guess it's the standard (of HTTP?) that imposes the 255 max

Re: Max URL length for 5.0.28

2005-04-09 Thread Behrang Saeedzadeh
According to the spec, maybe your client or proxy is problematic. I was googling around and i guess I found a result that was saying that IE supports URL lengths of about 2000 chars long. So if your client is IE, maybe the problem roots in somewhere else (possibly Tomcat.) -Behi On Apr 9,

Max URL length for 5.0.28

2005-04-08 Thread Jimmy Ray
Tomcat 5.0.28, HPUX Trying to use a URL that is 266 chars long and it seems to be truncated. Is there a max length setting for Tomcat? Regards, Jimmy Ray __ Yahoo! Messenger Show us what our next emoticon should look like. Join the fun.

HOW INCREASE URL length size ?

2003-09-26 Thread Philippe Couas
Hi, Url limit size is to 451 characters. How can increase it to 800 in Tomcat 4.1.24 ? Thanks Philipe Philippe COUAS Responsable Développement INFODEV S.A.

Re: HOW INCREASE URL length size ?

2003-09-26 Thread Tim Funk
Why do you think limit is 451? -Tim Philippe Couas wrote: Hi, Url limit size is to 451 characters. How can increase it to 800 in Tomcat 4.1.24 ? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

Re: HOW INCREASE URL length size ?

2003-09-26 Thread Christopher Williams
Philippe, I suspect that the underlying question is I want to stick loads of GET parameters in a URL, more than 451 characters' worth. How?. The answer is: don't. Do something else instead: 1. Use HTTP POST 2. Store stuff in the Session. Kind regards, Chris Williams.

Re: HOW INCREASE URL length size ?

2003-09-26 Thread Larry Meadors
You can't. :-D That is a browser limitation. Most are in the range of 2000 chars, but at any rate that is out of your control. You will need to POST if you have a form sending more data than that. If you have urls that are longer than that, then you are in a bad place. ;-) Larry [EMAIL

Re: HOW INCREASE URL length size ?

2003-09-26 Thread Rhino
Viagra maybe? ;-) Rhino - Original Message - From: Philippe Couas [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, September 26, 2003 8:43 AM Subject: HOW INCREASE URL length size ? Hi, Url limit size is to 451 characters. How can increase it to 800 in Tomcat 4.1.24

URL Length

2002-03-18 Thread Gurmeet
PLEASE help me on how can I control the length of the session ID appended to the URL as this is very important for my requirement. for clue : with weblogic we can do that by installing SP6 and then specifying the session ID length in the properties file. -Original Message- From:

URL Length

2002-03-17 Thread Gurmeet
Dear ALL, When I submit a page , tomcat is appending the sessionID to the URL, which causing me a lot of problem. Please help me, how can I avoid this. Thanks Gurmeet -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list:

Re: URL Length

2002-03-17 Thread Nikola Milutinovic
When I submit a page , tomcat is appending the sessionID to the URL, which causing me a lot of problem. Please help me, how can I avoid this. By turning the cookies on in your browser. There are only two ways Tomcat (or any other web application server) can support HTTP sessions,

Re: URL Length

2002-03-17 Thread Valera Molyakov
Hi ! See your brouser preferences - Cookies ( must be enabled, otherwise session ID append for URL). - Original Message - From: Gurmeet [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, March 18, 2002 7:01 AM Subject: URL Length Dear ALL, When I submit a page

RE: Maximum url length

2002-02-07 Thread Ignacio J. Ortega
El Mar 05 Feb 2002 20:12, escribiste: Hi, It's not a good idea. Try changing GET to POST. In case you don't know - request uris are often cached, logged, etc, so sending any data, especially passwords in them is a suicide or worse. I compound the uri internally in my servlet,

Maximum url length

2002-02-05 Thread karkoma
Hi... I'm trying to send a long uri to Tomcat 3.3 but it complains with error code 414, (414 Request-URI Too Long). However Apache can handle the same url. Is there a way to tell Tomcat to admit long uris / urls?? Something like this lynx -dump

RE: Maximum url length

2002-02-05 Thread Thanh Duong
Hi I got this problem too with tomcat 3.3. Now I am using tomcat 4 and This problem doesnt exist. Thanh -Original Message- From: karkoma [mailto:[EMAIL PROTECTED]] Sent: Dienstag, 5. Februar 2002 19:48 To: Tomcat Users List Subject: Maximum url length Hi... I'm trying to send a long

RE: Maximum url length

2002-02-05 Thread Deacon Marcus
- From: karkoma [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 05, 2002 7:48 PM To: Tomcat Users List Subject: Maximum url length Hi... I'm trying to send a long uri to Tomcat 3.3 but it complains with error code 414, (414 Request-URI Too Long). However Apache can handle the same url

RE: Maximum url length

2002-02-05 Thread Shannon Chen
Internet Explorer has a maximum uniform resource locator (URL) length of 2,083 characters, with a maximum path length of 2,048 characters. This limit applies to both POST and GET request URLs. If you are using the GET method, you are limited to a maximum of 2,048 characters (minus the number

Re: Maximum url length

2002-02-05 Thread Chinni . Venkateswara
: 02/05/02 Subject: Maximum url length 12:47 PM Please respond

Re: Maximum url length

2002-02-05 Thread karkoma
El Mar 05 Feb 2002 20:12, escribiste: Hi, It's not a good idea. Try changing GET to POST. In case you don't know - request uris are often cached, logged, etc, so sending any data, especially passwords in them is a suicide or worse. I compound the uri internally in my servlet, encode it and