Re: exception in jsp file

2009-02-21 Thread Jack Qu
Hi: you can find this java source file translated from jsp in you %catalina_home%/work/youAppcontext/org/**/org.apache.jsp.pages.CPFA_005fMensuel.saisi_005fajustement.ajust_005fcpe1_jsp._jspService(ajust_005fcpe1_jsp.java then you can find error line 498 ; or you can debug your app while start

Re: exception in jsp file

2009-02-19 Thread elyes sallem
Hi Lalchandra , i debuggued all the properties values, and found the one that caused a null pointer exception now i have got an other pb, here is the exception : javax.servlet.jsp.JspException: Cannot find bean dernierCpeEmporte in any scope at org.apache.struts.taglib.TagUtils.lookup(TagUtils.

Re: exception in jsp file

2009-02-18 Thread Lalchandra Rampersaud
Can you be more specific as to when the error occurs. Saludos Lalchandra Rampersaud - Original Message - From: "elyes sallem" To: "Struts Users Mailing List" Sent: Wednesday, February 18, 2009 7:41 AM Subject: exception in jsp file Hello, i m developping a web application wit

Re: exception in jsp file

2009-02-18 Thread benjamin haimerl
hi, do you have a jsp called: ajust_005fcpe1.jsp in your project? it looks like a null pointer on this jsp take a look at tomcat/work/../yourApp where all the jsp's should be dropped as a java class.. then you should see where the null pointer came from. ben elyes sallem wrote: Hello, i

Re: Exception in JSP

2005-04-07 Thread N G
If you are using a container that supports 2.4 servlet spec, see this page for your answer: http://www.onjava.com/pub/a/onjava/2003/12/03/JSP2part2.html If you are using a 2.3 servlet container: 1) Declare <%@ page isErrorPage="true" %> 2) Put this somewhere in the body of your page: <%= exception

Re: Exception in JSP

2005-04-07 Thread Folashade Adeyosoye
Try extending the ExceptionHandler and trap the exception in there and try to figure out what the exception is an instanceOf. From there you can place a message in the request and forward to your error page, to display the error On Apr 7, 2005 11:20 AM, [EMAIL PROTECTED] <[EMAIL PROTECTED]>