Re: URL decoding of plus (aka space) isn't done

2008-05-13 Thread Doug Donohoe
To answer my own question: I looked at the RFC (http://www.ietf.org/rfc/rfc2396.txt) and it appears that '+' is only reserved for query strings. The use of java.net.URLEncoder for path-portions of a URL (or even an entire URL) is incorrect. -Doug Doug Donohoe wrote: > > I&#

URL decoding of plus (aka space) isn't done

2008-05-13 Thread Doug Donohoe
I'm tracking down a bug in Wicket that appears in Tomcat (also Jetty). The issue is this: I'm submitting a URL with spaces and pluses in it. It is URL encoded (using java.net.URLEncoder) as follows: http://localhost:8080/bugs/home/message/message+with+spaces+and%2Bsome%2Bpluses/ On both Tomca