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 sti

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-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 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 r

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

2009-07-23 Thread Bill Barker
"Christopher Schultz" 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/somePathInfo&withMoreInfo/ > > Shouldn't that be /index.cfm/somePathInfo&%3BwithMore

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

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/somePathInfo&withMoreInfo/ Shouldn't that be /index.cfm/somePathInfo&%3BwithMoreInfo/ ? If you try the above URL, does it work? java.net.URLEncoder will encode ";" as "%3B". See th

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 mail

request.getPathInfo() gets truncated when ";" is present

2009-07-23 Thread Peter J. Farrell
I'm trying to figure out a particular strange problem with request.getPathInfo() data being truncated. This has to do with SES / Friendly URLs in which data is append on the path info part of the request URI. On the framework project I work on, we've seen developers put data into SES URL -- i