You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by bu...@apache.org on 2001/09/26 19:50:45 UTC

DO NOT REPLY [Bug 3779] - the value of should be URL encoded

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=3779>.
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=3779

the value of <jsp:param> should be URL encoded

kin-man.chung@sun.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|Jasper                      |Catalina



------- Additional Comments From kin-man.chung@sun.com  2001-09-26 10:50 -------
Part of the java code generated for

<jsp:forward page="b3779a.jsp">
<jsp:param name="test1" value="value = 1"/>
</jsp:forward>

is

            // begin [file="/jsp/test/b3779.jsp";from=(0,0);to=(2,14)]
                if (true) {
                    out.clear();
                    String _jspx_qfStr = "";
                    _jspx_qfStr = _jspx_qfStr + "?test1=" + "value = 1";
                    pageContext.forward("b3779a.jsp" +  _jspx_qfStr);
                    return;
                }
            // end

looks perfectly fine.  Looks like a container problem.