RE: servlet api problem

2006-05-29 Thread Ayusman dikshit
From: Asaf Lahav [mailto:[EMAIL PROTECTED] Sent: Sunday, May 28, 2006 11:52 PM To: 'Tomcat Users List' Subject: servlet api problem When starting tomcat, I get the following log: 28/05/2006 21:03:39 org.apache.catalina.loader.WebappClassLoader validateJarFile INFO

servlet api problem

2006-05-28 Thread Asaf Lahav
When starting tomcat, I get the following log: 28/05/2006 21:03:39 org.apache.catalina.loader.WebappClassLoader validateJarFile INFO: validateJarFile(C:\Tomcat\webapps\muse\WEB-INF\lib\servlet-api.jar) - jar not loaded. See Servlet Spec 2.3, section 9.7.2. Offending class:

Re: servlet api problem

2006-05-28 Thread Michael Echerer
Remove the servlet-api.jar from your web apps. This jar is provided by Tomcat already. You might need it to build your app, but don't deploy it. Cheers, Michael Asaf Lahav wrote: *When starting tomcat, I get the following log:*** 28/05/2006 21:03:39

Re: servlet api problem

2006-05-28 Thread Georg Sauer-Limbach
I think the problem is that you have servlet-api.jar in the lib directory of your webapp - this jar is already loaded for each webapp by Tomcat, it is in the common/lib directory. So remove this jar from the WEB-INF/lib directory of all your webapps. Georg Asaf Lahav wrote: *When starting