uest.getRequestDispatcher("blah.jsp").forward(request, response);
>
> // in the JSP
> Object myObject = request.getAttribute(MyConstants.MY_OBJECT_CONSTANT_NAME);
>
> > -Original Message-
> > From: Michael Neel [mailto:[EMAIL PROTECTED]
> > Sent: Wednes
26 October 2005 16:12
> To: users@tomcat.apache.org
> Subject: getPageContext returns null
>
>
> Hi,
>
> Quick overview, I'm setting some variables in the session from my
> servlet to be used in my JSP/JSTL page. Everything is fine if a JSP
> page is calle
Variables in pageContext scope are only available to the JSP. It looks like
you should be setting variables in the request scope.
-Tim
Michael Neel wrote:
Hi,
Quick overview, I'm setting some variables in the session from my
servlet to be used in my JSP/JSTL page. Everything is fine if a JS
Hi,
Quick overview, I'm setting some variables in the session from my
servlet to be used in my JSP/JSTL page. Everything is fine if a JSP
page is called before the servlet, but a call to the servlet first
results in JspFactory.getPageContext to return null.
To reproduce, I restart the Tomcat ser