I ran into this a few days ago. It turned out that I was using jdk1.5.02 which comes with log4j 1.2.8. The webapp I had which was one war with servicemix in it was using the log4j 1.2.12 API. The 1.2.12 log4j api had changed from 1.2.8 and so the webapp was complaining about not finding a particular method. This was because tomcat loaded log4j 1.2.8 from jdk's jre/lib/ext dir and the version of log4j loaded was not compatible with what the webapp was looking for.
I fixed this by moving to a more current jdk - 1.5.07. I wonder if you have a similar problem. Or it could be some other jar version mismatch like the above. Good luck, Prasad Btw, I did find more logs/stack trace in the localhost_logs under the logs directory. -----Original Message----- From: Guillaume Nodet [mailto:[EMAIL PROTECTED] Sent: Friday, June 09, 2006 1:48 AM To: [email protected] Subject: Re: Unable to create a SM WAR You should find some usefull informations in the tomcat logs. Cheers, Guillaume Nodet On 6/9/06, apinke <[EMAIL PROTECTED]> wrote: > > > Thanks.. > I was able to build the WAR. > But I am now having problems deploying it..I download Tomcat 5 for windows > and added the compatibility package. > The "servicemix-web-3.0-SNAPSHOT" does not come up. The logs have the > following information : > > INFO: Deploying web application archive servicemix-web-3.0-SNAPSHOT.war > Jun 9, 2006 11:24:15 AM org.apache.catalina.core.StandardContext start > SEVERE: Error listenerStart > Jun 9, 2006 11:24:15 AM org.apache.catalina.core.StandardContext start > SEVERE: Context [/servicemix-web-3.0-SNAPSHOT] startup failed due to > previous errors > > Is there any way I can enable additional logging to find out whats the > exact > error ? > > Thanks > Pat > -- > View this message in context: > http://www.nabble.com/Unable-to-create-a-SM-WAR-t1749276.html#a4787841 > Sent from the ServiceMix - User forum at Nabble.com. > >
