I have jetspeed installed under Tomcat 3.1's webapps directory, where I created a jetspeed subdirectory (as a webapp, read Servlet spec 2.2). therein is a Web-inf directory, which contains a lib subdir with all the jars and the web.xml below. I invoke jetspeed through http://myserver/jetspeed. This is enabled through the servlet mapping in my web.xml. The default would be myserver/servlet/jetspeed. You need to adapt the properties path, of course.. <web-app> <servlet> <servlet-name> jetspeed </servlet-name> <servlet-class> Turbine </servlet-class> <init-param> <param-name> properties </param-name> <param-value> d:/windev/jetspeed/Jetspeed-1.1/src/config/TurbineResources.properties </param-value> </init-param> </servlet> <!-- make jetspeed serve from context root --> <servlet-mapping> <servlet-name>jetspeed</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> </web-app> -----Original Message----- From: Manik Surtani <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: Donnerstag, 1. Juni 2000 13:41 >Hello, Jetspeed wont start!!! > > >I'm using Jetspeed 1.1, tomcat 3.0, Sun JDK1.2.2, and Redhat 6.1. > >I follow the instrcutions to the word, and when I type a >http://<servername>/servlets/jetspeed I get a page not found error. > >The Install docs mention adding ines to web.xml ... which web.xml is >this? tomcat 3.0 has a etc/web.xml as well as a >webpages/WEB-INF/web.xml ... > >is there anything I should be warned of here? > > >-- >Manik Surtani >Chief Technology Officer >Espada (Pvt.) Ltd. >http://www.espadanet.com > > > >-- >-------------------------------------------------------------- >Please read the FAQ! <http://java.apache.org/faq/> >To subscribe: [EMAIL PROTECTED] >To unsubscribe: [EMAIL PROTECTED] >Archives and Other: <http://java.apache.org/main/mail.html> >Problems?: [EMAIL PROTECTED] > -- -------------------------------------------------------------- Please read the FAQ! <http://java.apache.org/faq/> To subscribe: [EMAIL PROTECTED] To unsubscribe: [EMAIL PROTECTED] Archives and Other: <http://java.apache.org/main/mail.html> Problems?: [EMAIL PROTECTED]
