So I have a typical error-page mapping such as
    <error-page>
        <error-code>404</error-code>
        <location>/WEB-INF/error.jsp</location>
    </error-page>

In my error.jsp I have it use simple layout tags, and I get the not quite so
helpful error:
net.sourceforge.stripes.exception.StripesRuntimeException: Something is
trying to access the current Stripes configuration but the current request
was never routed through the StripesFilter! As a result the appropriate
Configuration object cannot be located. Please take a look at the exact URL
in your browser's address bar and ensure that any requests to that URL will
be filtered through the StripesFilter according to the filter mappings in
your web.xml.

Although in conjunction with that, I do also see a NPE with root cause of:
Caused by: org.apache.jasper.JasperException: An exception occurred
processing JSP page /WEB-INF/layout/standard.jsp at line 3

And line 3 in the layout file is simply:
<c:if test="${empty myPlayer}">

Any thoughts on the cause of this?
Thanks so much.

-Matthew
-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Register now and save $200. Hurry, offer ends at 11:59 p.m., 
Monday, April 7! Use priority code J8TLD2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
_______________________________________________
Stripes-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/stripes-users

Reply via email to