query parameters passed to servletContext.getRequestDispatcher() aren't visible 
in the included servlet/JSP 
------------------------------------------------------------------------------------------------------------

                 Key: SLING-2073
                 URL: https://issues.apache.org/jira/browse/SLING-2073
             Project: Sling
          Issue Type: Bug
          Components: Engine
    Affects Versions: Engine 2.2.2
            Reporter: Justin Edelson
             Fix For: Engine 2.2.4


According to the servlet spec, when running code like this:

RequestDispatcher rd = 
servletContext.getContext("/other").getRequestDispatcher("/page.jsp?foo=bar");
rd.include(request, response);

the foo parameter is supposed to be visible in the included servlet/JSP.

But in Sling, this is not the case - the included servlet/JSP doesn't see the 
request parameter foo.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to