Jsp Error

I was having a page run correct on server i change the server with another without changing any thing in the code except the database connection and i know it is right and tested in other pages the error occur is

(Unable to load class for JSP)

And i don't use servlet class i only use jsp pages

Please help me

[336 byte] By [Eng_Mohamed_Shahena] at [2007-11-27 10:03:06]
# 1
Are you using special tags like jstl or other?Manuel Leiria
manuel.leiriaa at 2007-7-13 0:38:01 > top of Java-index,Java Essentials,Java Programming...
# 2
This question is very vague.Are you sure the new server has the same Java version installed as the previous one?And by the way, JSP pages are translated into Servlet classes, at least they were the last time I worked with them (admittedly a while ago).
dwga at 2007-7-13 0:38:01 > top of Java-index,Java Essentials,Java Programming...
# 3
No just jsp page retreive from database
Eng_Mohamed_Shahena at 2007-7-13 0:38:01 > top of Java-index,Java Essentials,Java Programming...
# 4
no not the same but the old was using JDK 1.4 and the new use JDK1.5and was tested locally
Eng_Mohamed_Shahena at 2007-7-13 0:38:01 > top of Java-index,Java Essentials,Java Programming...
# 5
any one can i write the full error in the page so can help you?
Eng_Mohamed_Shahena at 2007-7-13 0:38:01 > top of Java-index,Java Essentials,Java Programming...
# 6

This is the full error in the page please help me

org.apache.jasper.JasperException: Unable to load class for JSP

org.apache.jasper.JspCompilationContext.load(JspCompilationContext.java:598)

org.apache.jasper.servlet.JspServletWrapper.getServlet(JspServletWrapper.java:147)

org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:315)

org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)

org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)

javax.servlet.http.HttpServlet.service(HttpServlet.java:802)

root cause

java.lang.ClassNotFoundException: org.apache.jsp.DisplayHotels_jsp

java.net.URLClassLoader$1.run(URLClassLoader.java:200)

java.security.AccessController.doPrivileged(Native Method)

java.net.URLClassLoader.findClass(URLClassLoader.java:188)

org.apache.jasper.servlet.JasperLoader.loadClass(JasperLoader.java:133)

org.apache.jasper.servlet.JasperLoader.loadClass(JasperLoader.java:65)

org.apache.jasper.JspCompilationContext.load(JspCompilationContext.java:596)

org.apache.jasper.servlet.JspServletWrapper.getServlet(JspServletWrapper.java:147)

org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:315)

org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)

org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)

javax.servlet.http.HttpServlet.service(HttpServlet.java:802)

note The full stack trace of the root cause is available in the Apache Tomcat/5.5.15 logs.

Eng_Mohamed_Shahena at 2007-7-13 0:38:01 > top of Java-index,Java Essentials,Java Programming...
# 7
Well it's telling you that the class DisplayHotels_jsp can't be found.This is the servlet class that should be generated from your DisplayHotels.jsp page.So are you sure that the deployment went smoothly?Have you tried deploying again?
dwga at 2007-7-13 0:38:01 > top of Java-index,Java Essentials,Java Programming...