i have a
servlet file
1) BeanTest.java
and a
jsp file
2) result2.jsp
i put the files in the following locations
1)BeanTest.class(webapps\myApp\WEB-INF\classes)
2)result2.jsp(webapps\myApp)
3)jstl.jar(webapps\myApp\WEB-INF\lib)
4)standard.jar(webapps\myApp\WEB-INF\lib)
and i am using jsp2.0 servlet 2.4 and
tomcat 5.5
by running the files i am getting this error
exception
javax.servlet.ServletException: javax/el/ValueExpression
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:272)
javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
BeanTest.doPost(BeanTest.java:13)
javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
root cause
java.lang.NoClassDefFoundError: javax/el/ValueExpression
java.lang.Class.getDeclaredMethods0(Native Method)
java.lang.Class.privateGetDeclaredMethods(Class.java:2427)
java.lang.Class.getDeclaredMethods(Class.java:1791)
.
.
.
how to solve this?