Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Jasper Exception

Status
Not open for further replies.

arm207

Programmer
Jun 13, 2006
26
US
Hi,
I'm getting a wierd jasper exception and not sure how to debug it further. What's interesting is that my ViewSPClient.jsp page doesn't have 129 lines. So I'm confused. Please help.

What's the root cause of something like this?

How do you debug such an error?



Her'es the exception I'm getting...
javax.servlet.ServletException
at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:536)
at org.apache.jsp.ViewSPClient_jsp._jspService(ViewSPClient_jsp.java:129)
at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:137)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:210)
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
 
What would cause exception on line 129?

catch (Throwable t) {
out = _jspx_out;
if (out != null && out.getBufferSize() != 0)
out.clearBuffer();
LINE 129 if (pageContext != null)
pageContext.handlePageException(t);
} finally {
if (_jspxFactory != null)
_jspxFactory.releasePageContext(pageContext);
}
 
Hi,

The jsp that you are writing is being translated to a Servlet on the Server, The Servlet container adds many lines of code to your original jsp file. So, when you receive an error on line 129, it doesn't mean the line at your jsp but at the generated servlet. Locate the generated servlet (usually it will be under the work folder of the Servlet container) and see what line 129 says over there...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top