I saw one long posting on this in the archives with no clear answer. Someone had the
exact same problem. For some reason PageContextImpl is looking for a key I never
defined and don't have in any of my jsp's. Relevant stack trace is below...
I believe this is the only relevant part of the stack trace...
javax.servlet.ServletException: Cannot find message resources under key
org.apache.struts.action.MESSAGE
at
org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:533)
at org.apache.jsp.index_jsp._jspService(index_jsp.java:95)
at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:137)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
Line 95 of the index_jsp is having trouble. Here are the lines in the generated
index_jsp file from tomcat....
91 } catch (Throwable t) {
92 out = _jspx_out;
93 if (out != null && out.getBufferSize() != 0)
94 out.clearBuffer();
95 if (pageContext != null) pageContext.handlePageException(t);
96 } finally {
97 if (_jspxFactory != null) _jspxFactory.releasePageContext(pageContext);
98 }
Notice the root cause of the real exception caught by line 91 is hidden by the
exception coming from line 95. (ie. I need to fix 95 and them I am off on my own
fixing my next problem. I really need to fix this one as I need the errors my apps
cause to be reported correctly. Anybody have any ideas on this?
thanks,
dean