Hi, if you have not touched the standard web.xml in $CATALINA_HOME/conf yet, then this is your problem. Please read:
http://marc.theaimsgroup.com/?t=104326854100001&r=1&w=2 The URL Mapping for the InvokerServlet (The Servlet that maps request for http://*/servlet/* to you servlet) ist commented out under tomcat 4.1 and the InvokerServlet is commented out also under tomcat 5. So please edit you $CATALINA_HOME/conf/web.xml and adjust it to start the InvokerServlet and use the correct URL Mapping. Kind regards J�rgen Hoffmann -----Urspr�ngliche Nachricht----- Von: David Demner [mailto:[EMAIL PROTECTED] Gesendet: Samstag, 31. Januar 2004 08:38 An: 'Turbine Users List' Betreff: RE: Turbine under tomcat 5 Oh... What happens if you replace it with something really basic? <?xml version="1.0" encoding="ISO-8859-1"?> <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN" "http://java.sun.com/j2ee/dtds/web-app_2.2.dtd"> <web-app> <servlet> <servlet-name>msw</servlet-name> <servlet-class>org.apache.turbine.Turbine</servlet-class> <init-param> <param-name>applicationRoot</param-name> <param-value>webContext</param-value> </init-param> <init-param> <param-name>properties</param-name> <param-value>/WEB-INF/conf/TurbineResources.properties</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>msw</servlet-name> <url-pattern>/msw/servlet/msw/*</url-pattern> </servlet-mapping> </web-app> David -----Original Message----- From: Stephen Eaton [mailto:[EMAIL PROTECTED] Sent: Friday, January 30, 2004 8:13 PM To: 'Turbine Users List' Subject: RE: Turbine under tomcat 5 This was the application web.xml the web.xml in C:\java\Tomcat-5.0\conf\ is the standard one that is installed...I have not touched it. > -----Original Message----- > From: David Demner [mailto:[EMAIL PROTECTED] > Sent: Saturday, 31 January 2004 10:53 AM > To: 'Turbine Users List' > Subject: RE: Turbine under tomcat 5 > > Well, it looks ok to me (after putting exactly what I said in > my last e-mail). This is the web.xml from your > C:\java\Tomcat-5.0\conf\ directory, isn't it? What's in the > application's web.xml > (C:\java\Tomcat-5.0\webapps\msw\WEB-INF)? Maybe you can't > have the same servlet in both files? > > David > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
