I stated before Apache2 server properly handles
that problem and I need that functionality because our customer's system
built on it.
-Original Message-
From: David Delbecq [mailto:[EMAIL PROTECTED]
Sent: Wednesday, February 01, 2006 11:58 AM
To: Tomcat Users List
Subject: Re: percent
If this were fixed, there would be a host of people complaining about the
opposite. The URL below is inavlid based ont the RFC. getParameter has some
basic assumptions that the url is correctly encoded.
If you wish to place bad data in the query string, I recommend using
request.getQueryString
hi David;
I think I'll try your 2nd solution offer.
thank you for your help.
-Original Message-
From: David Delbecq [mailto:[EMAIL PROTECTED]
Sent: Wednesday, February 01, 2006 1:16 PM
To: Tomcat Users List
Subject: Re: percent sign in URI
How does your customer system handle
>From: David Delbecq [mailto:[EMAIL PROTECTED]
>Sent: Wednesday, February 01, 2006 11:58 AM
>To: Tomcat Users List
>Subject: Re: percent sign in URI
>
>
>Hello abdurrahman,
>
>Your url is incorrect, replace it with
>http://localhost:8080/aSite/aPage?query=hi%25everybody
&g
AM
To: Tomcat Users List
Subject: Re: percent sign in URI
Hello abdurrahman,
Your url is incorrect, replace it with
http://localhost:8080/aSite/aPage?query=hi%25everybody
According to rfc 1738, 2.2. URL Character Encoding Issues
Octets must be encoded ..., if the use of the corresponding charact
Hello abdurrahman,
Your url is incorrect, replace it with
http://localhost:8080/aSite/aPage?query=hi%25everybody
According to rfc 1738, 2.2. URL Character Encoding Issues
Octets must be encoded ..., if the use of the corresponding character is
unsafe, ...
The character "%" is unsafe be
hi;
my friend tried it, reported that it didn't work.
abdurrahman
-Original Message-
From: Aurélien DEHAY [mailto:[EMAIL PROTECTED]
Sent: Wednesday, February 01, 2006 11:29 AM
To: Tomcat Users List
Subject: Re: percent sign in URI
Hello.
abdurrahman sahin wrote:
> I realized
Hello.
abdurrahman sahin wrote:
I realized apache2 web server properyl handles % sign in URIs, i need =
exact functionality on tomcat 5 too.
When I try to pass a parameter containing % sign, the parameter value on =
the server seems null.
like
http://localhost:8080/aSite/aPage?query=hi%everybody
I realized apache2 web server properyl handles % sign in URIs, i need =
exact functionality on tomcat 5 too.
When I try to pass a parameter containing % sign, the parameter value on =
the server seems null.
like
http://localhost:8080/aSite/aPage?query=hi%everybody
Tomcat 5 cannot handle that, Is th