RE: URL encoding problem IIS6 / JK1.2.25 / Tomcat 5.5.20

2008-06-25 Thread Jesse Klaasse
André Warnier wrote: >[...] >Now, I should add that using [ and ] in URL's is not really something I would >recommend, if only for legibility reasons. It will always make people wonder >if what they're seeing in the logfile is normal, or if it's some programming >syntax which "escaped" there. >

Re: URL encoding problem IIS6 / JK1.2.25 / Tomcat 5.5.20

2008-06-25 Thread André Warnier
Jesse Klaasse wrote: [...] Good. Now, I should add that using [ and ] in URL's is not really something I would recommend, if only for legibility reasons. It will always make people wonder if what they're seeing in the logfile is normal, or if it's some programming syntax which "escaped" ther

Re: URL encoding problem IIS6 / JK1.2.25 / Tomcat 5.5.20

2008-06-25 Thread André Warnier
Jesse Klaasse wrote: [...] Good. Now, I should add that using [ and ] in URL's is not really something I would recommend, if only for legibility reasons. It will always make people wonder if what they're seeing in the logfile is normal, or if it's some programming syntax which "escaped" ther

RE: URL encoding problem IIS6 / JK1.2.25 / Tomcat 5.5.20

2008-06-24 Thread Jesse Klaasse
André Warnier wrote: >It would appear (from the logs), that there is some double-encoding of the URI >going on. >[snip] >But, if somewhere along the line, a piece of code was receiving the encoded >URI "http://.../test%5Bbrackets%5D.jsp";, and decided to re-encode it again >using the "% hex hex

RE: URL encoding problem IIS6 / JK1.2.25 / Tomcat 5.5.20

2008-06-24 Thread Walter Thompson
Try taking out the square brackets from the jsp part and see if it works without them (http://localhost/testbrackets.jsp). Also, you shouldn't need the /webapp if Tomcat is configured correctly. Make sure your directory structure is correct. Walter -Original Message- From: Jesse Klaasse

Re: URL encoding problem IIS6 / JK1.2.25 / Tomcat 5.5.20

2008-06-24 Thread André Warnier
Jesse Klaasse wrote: [snip] Now, we try the whole link through the JK connector: http://localhost/webapp/test[brackets].jsp This doesn't work, and results in a 404 error (appearing in both IIS and Tomcat's log as test%5Bbrackets%5D.jsp, Tomcat with a 404, IIS with a 200). Thanks for the exc