DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3986>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3986 Cannot support passing parameter as % in <JSP: forward> [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID ------- Additional Comments From [EMAIL PROTECTED] 2001-10-05 08:18 ------- My understanding is that jsp:forward should behave similarly with RequestDispather.forward ( in the servlet spec ). The params should be equivalent with what you would pass in the query string ( ?a=b ). That means they should be encoded ( and % replaced with %xx - I don't know the exact code ). Tomcat would throw the same exception if the original request will have only a '%' in the param ( or anywhere else ) - it's an invalid URI. Previous versions of tomcat didn't decode the param.