Re: percent sign in URI

2006-02-01 Thread Seak, Teng-Fong
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

Re: percent sign in URI

2006-02-01 Thread Tim Funk
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

RE: percent sign in URI

2006-02-01 Thread abdurrahman sahin
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

Re: percent sign in URI

2006-02-01 Thread David Delbecq
>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

RE: percent sign in URI

2006-02-01 Thread abdurrahman sahin
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

Re: percent sign in URI

2006-02-01 Thread David Delbecq
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

RE: percent sign in URI

2006-02-01 Thread abdurrahman sahin
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

Re: percent sign in URI

2006-02-01 Thread Aurélien DEHAY
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

percent sign in URI

2006-02-01 Thread abdurrahman sahin
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