On 4/14/05, Vernon <[EMAIL PROTECTED]> wrote:
> In Servlet, I have
> 
> request.getSession().getAttribute("cc");
> 
> The code returns the right result.
> 
> In JSP, when I have
> 
> <fmt:message key="cc.${sessionScope.cc}"/>
> 
> I get
> 
> java.lang.IllegalStateException: Cannot access session
> scope in page that does not participate in any session
> 
> I think the reason is that I have
> 
> <%@ page session="false"%> in the JSP file.

By specifying that the page does not participate in a session, you are
deliberately stating that no session be accessible from the page. If
you want to access the session, you need to change this to "true".

--
Martin Cooper


> I have tried to retrieve the session attribute in some
> other ways like the follogins I can think with a
> success. What is the right way to get the attribute
> with the JSTL?
> 
> <fmt:message key="cc.${requestScope.session.cc}"/>
> 
> <fmt:message key="cc.${pageContext.session.cc}"/>
> 
> The both yeild ??cc.??
> 
> Thanks.
> 
> __________________________________
> Do you Yahoo!?
> Yahoo! Small Business - Try our new resources site!
> http://smallbusiness.yahoo.com/resources/
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to