Your Internet Explorer version is not compatible with our shopping cart system. Please use version 9 or higher to avoid problems with your order(s). Close
Anybody run into this problem javax/servlet/Filter ?
I am getting java.lang.NoClassDefFoundError:javax/servlet/Filter whenever I try to run tomcat 5.5 from myeclipse. I came across documentation which says the cause might be due to another servlet.jar in the classpath other than /commons. Has anyone run into this one. If yes, were you able to solve the problem.
Thanks
sripri,
Did you by chance add your own user libraries to the build path instead of the J2EE 1.4 Library Set that MyEclipse adds by default? It could be that your project is actually deploying another copy of the J2EE JARs with itself (which is not good). Check your deployed project location under WEB-INF/lib and see if there are servlet or JSP jars in there.
I found the problem!. I was adding the project’s user libraries in the eclipse-tomcat server configuration. Once, I removed them it started working fine. For Jrun the only way to get it to work was by adding the user libraries to the “path” in the configuration setup! and I continued to do the same for tomcat.
Thanks for your response.