Hi, >I've upgraded my development station to match our production server which
This seems like the wrong order to do things ;) I suggest doing it in dev first, then in a test environment, then in production ;) But of course it's too late for that now. >Generated servlet error: > [javac] Compiling 1 source file > >/usr/local/jakarta-tomcat- >4.1.31/work/Standalone/localhost/_/index_jsp.java:266: >handlePageException(java.lang.Exception) in javax.servlet.jsp.PageContext >cannot be applied to (java.lang.Throwable) > if (pageContext != null) pageContext.handlePageException(t); This usually indicates multiple versions of either the JSP APIs or the Jasper classes on the server's runtime classpath. I hope when you upgraded your server you did an installation to a clean directory, not an overwrite of the old directory. If you did the latter, search it for jsp.jar and jsp-api.jar and make sure only one is present: the latest. Same thing for the Jasper jars (jasper-compiler, jasper-runtime, etc.). Yoav This e-mail, including any attachments, is a confidential business communication, and may contain information that is confidential, proprietary and/or privileged. This e-mail is intended only for the individual(s) to whom it is addressed, and may not be saved, copied, printed, disclosed or used by anyone else. If you are not the(an) intended recipient, please immediately delete this e-mail from your computer system and notify the sender. Thank you. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
