Re: request.getPathInfo() gets truncated when ; is present

2009-07-27 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Peter, On 7/24/2009 8:18 PM, maestrofjp wrote: Since our framework is deployed on several different CFML servlets -- their implementation to get at the original http request wrapper differs a bit (three different vendors). We'll probably stick to

Re: request.getPathInfo() gets truncated when ; is present

2009-07-24 Thread Peter J. Farrell
@All, thanks everybody for responding so far. I apologize for not originally including the version of Tomcat we're using (6.0.18). It was an oversight on my part in my hurried effort to write the email -- totally just blitzed that I should include that (my first post to the Tomcat list). I

Re: request.getPathInfo() gets truncated when ; is present

2009-07-24 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Peter, On 7/24/2009 3:58 AM, Peter J. Farrell wrote: @Bill, thanks for mentioning the specific RFC referencing the encoding of ;. That's what the team here figured out as well and it's nice to have an independent person verify our assumptions

Re: request.getPathInfo() gets truncated when ; is present

2009-07-24 Thread maestrofjp
Since our framework is deployed on several different CFML servlets -- their implementation to get at the original http request wrapper differs a bit (three different vendors). We'll probably stick to use the poor man's encoding using a modified unicode representation of ; in the end.

RE: request.getPathInfo() gets truncated when ; is present

2009-07-23 Thread Caldarale, Charles R
From: Peter J. Farrell [mailto:pe...@mach-ii.com] Subject: request.getPathInfo() gets truncated when ; is present I'm trying to figure out a particular strange problem with request.getPathInfo() data being truncated. It's unfortunate that the mailing list doesn't have a filter that

Re: request.getPathInfo() gets truncated when ; is present

2009-07-23 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Peter, On 7/23/2009 3:41 PM, Peter J. Farrell wrote: /index.cfm/somePathInfoamp;withMoreInfo/ Shouldn't that be /index.cfm/somePathInfoamp%3BwithMoreInfo/ ? If you try the above URL, does it work? java.net.URLEncoder will encode ; as %3B. See

Re: request.getPathInfo() gets truncated when ; is present

2009-07-23 Thread André Warnier
Caldarale, Charles R wrote: From: Peter J. Farrell [mailto:pe...@mach-ii.com] Subject: request.getPathInfo() gets truncated when ; is present I'm trying to figure out a particular strange problem with request.getPathInfo() data being truncated. It's unfortunate that the mailing list doesn't

Re: request.getPathInfo() gets truncated when ; is present

2009-07-23 Thread Bill Barker
Christopher Schultz ch...@christopherschultz.net wrote in message news:4a68cd5b.2090...@christopherschultz.net... -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Peter, On 7/23/2009 3:41 PM, Peter J. Farrell wrote: /index.cfm/somePathInfoamp;withMoreInfo/ Shouldn't that be