RE: Problem with Jasper-Need your help

2005-07-27 Thread Raghupathy,Gurumoorthy
%= request.getParameter(testParam) % may trow a null pointer so try %= request.getParameter(testParam) == null ? : request.getParameter(testParam) % Regards Guru -Original Message- From: Panagiotis Karvounis [mailto:[EMAIL PROTECTED] Sent: 27 July 2005 13:23 To:

Re: Problem with Jasper-Need your help

2005-07-27 Thread Panagiotis Karvounis
It didn't work again! I have almost the same problem with all my JSP pages(Servlets work ok). I think is a Tomcat problem;The method handlePageException(Exception) in the type PageContext is not applicable for the arguments (Throwable) I went to servlet code produced and I changed

Re: Problem with Jasper-Need your help

2005-07-27 Thread Panagiotis Karvounis
So is there anybody that can help me? Please guys...I don't know what to do. On 7/27/05, Panagiotis Karvounis [EMAIL PROTECTED] wrote: It didn't work again! I have almost the same problem with all my JSP pages(Servlets work ok). I think is a Tomcat problem;The method

Re: Problem with Jasper-Need your help

2005-07-27 Thread Panagiotis Karvounis
I found the solution; The method handlePage(Throwable) was introduced in JSP 2.0 The problem was that I had in my classpath a servlet.jar older where this method was not defined.I deleted it and everything works fine now. Thanks for support Panagiotis On 7/27/05, Panagiotis Karvounis [EMAIL