Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Critical
-
Resolution: Fixed
-
Affects Version/s: 6.0.0beta14
-
Fix Version/s: 6.0.0beta15
-
Component/s: Servlet
-
Labels:None
-
Environment:osx, java 5
-
Testcase included:yes
-
Number of attachments :
Description
I have the following servlet mapping in my web.xml
<servlet-mapping>
<servlet-name>PageServlet</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
PageServlet just prints out PATH_INFO and that is all it does.
This works fine for URLs with no spaces, but if there is a couple of spaces in the url, it returns a 404.
This is even true for the test webapp that comes with jetty6; try this url:
http://localhost:8081/test/dump/info/ASs%20sad%20a%20sd
vs this.
http://localhost:8081/test/dump/info/asd
The one with spaces (%20) doesn't work and return 404....
This is IMHO pretty serious.