Re: Fresh install of Tomcat - getting frustrated with the JSP no working

2007-10-03 Thread niblz
Here is the JSP - just a very simple one !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0 Transitional//EN !-- Simple JSP file to test server setup and configuration. Taken from Core Servlets and JavaServer Pages 2nd Edition from Prentice Hall and Sun Microsystems Press,

RE: Fresh install of Tomcat - getting frustrated with the JSP no working

2007-10-03 Thread Larry Isaacs
If I recall correctly, in JSP spec 1.1, the argument for handlePageException() was Exception. In JSP spec 1.2 and later, the argument is Throwable. It would appear you have a servlet.jar from Servlet 2.2/JSP 1.1 somehow becoming the jar this JSP is running against, causing the method signature

RE: Fresh install of Tomcat - getting frustrated with the JSP no working

2007-10-03 Thread niblz
Man you are a genius!!! Problem solved! It seem I had a thing in my path, where an older version of some api's like Servlet.api was casuing some mismatch! Now Every thing work very nice! Thank you guys :) Larry Isaacs wrote: If I recall correctly, in JSP spec 1.1, the argument for

Re: Fresh install of Tomcat - getting frustrated with the JSP no working

2007-10-03 Thread niblz
O I have got mine from the offical Tomcat site, and other version from here http://www.coreservlets.com/Apache-Tomcat-Tutorial/ Aa for copying things to my web-inf, well no The only thing I have done is putting the JSP in the ROOT dir in the web-app and trying to get into it Also I have download