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,

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
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. http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.2.1 The HTTP protocol does not place any a

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 of

Re: Maximum url length

2002-02-05 Thread Chinni . Venkateswara
One way I can see is... use hidden html INPUT tags for your params and use POST instead of GET. Hope this helps. gOOd day. -Chinni karkoma

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