I have my Java Servlets under /local/tomcat/webapps/hari/WEB-INF/classes My Java Servlets use Oreilly's predefined classes and I use that so as not to reinvent the wheel. Oreliiy's classses are avaliable as "cos.jar" file and when I unjar them I get following structure com/oreilly/servlet/*.classes
I have stored this cos.jar file under "/local/tomcat/webapps/hari/WEB-INF/lib/" and "/local/tomcat/webapps/lib/" and have these on my CLASSPATH. In my Java Servlets, I do following import ------------------------------------------------- import com.oreilly.servlet.MultipartRequest; import com.oreilly.servlet.*; ------------------------------------------------- It compiles everything fine BUT when I run my WEB APPLICATION (http://us.hari.com/hari/BatchUpload1) it gives my following ERRORS wonder why... -------------------------------------------------------------------------------- description: The server encountered an internal error () that prevented it from fulfilling this request. exception javax.servlet.ServletException: Error instantiating servlet class util.BatchUpload1 at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:865) .... root cause java.lang.NoClassDefFoundError: com/oreilly/servlet/multipart/FileRenamePolicy at java.lang.Class.getDeclaredConstructors0(Native Method) at java.lang.Class.privateGetDeclaredConstructors(Class.java:1618) at java.lang.Class.getConstructor0(Class.java:1930) at java.lang.Class.newInstance0(Class.java:278) at java.lang.Class.newInstance(Class.java:261) at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:856) ----------------------------------------------------------------------------------- Can anyone point what is wrong here.,.. Sincerely, KISNA View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3878248#3878248 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3878248 ------------------------------------------------------- This SF.Net email is sponsored by Oracle Space Sweepstakes Want to be the first software developer in space? Enter now for the Oracle Space Sweepstakes! http://ads.osdn.com/?ad_id=7412&alloc_id=16344&op=click _______________________________________________ JBoss-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
