First of all I'm very excited about the project!!!
 
<disclaimer>
I expect my problem is my lack of understanding of the Jetspeed and Tomcat architecture. 
</disclaimer>
 
I'm unable to get the Jetspeed servlet to respond, I've tried several configurations and still come up empty.  I try to run "http://localhost/servlet/jetspeed" and I get a "404".  I can run other servlets under Tomcat but I expect that I've missed steps for properly configuring Jetspeed. 
 
Below is my configuration and many thanks go to the kind soul that points out the error in my ways.  Thanks in advance.  --Greg
 
Configuration:
WIN98
TOMCAT v3.1 (release build); installed d:\jakarta-tomcat
JDK v1.3 ; installed d:\jdk1.3
Jetspeed v1.0 ; installed d:\jetspeed-1.1
 
My Class path:
CLASSPATH=D:\jdk1.3\bin;D:\jdk1.3\lib;d:\jakarta-tomcat\lib;D:\jdk1.3\lib\tools.
jar;d:\prac;d:\jakarta-tomcat\src;d:\Jetspeed-1.1\Jetspeed.jar;d:\Jetspeed-1.1\lib;
tomcat directory (relivant) structure:
D:\jakarta-tomcat\webapps\ROOT\
                                                 \content          --added per instructions
                                                 \META-INF
                                                 \WEB-INF       -- location of web.xml (below)
 
 
web.xml; located in d:\jakarta-tomcat\webapps\ROOT\WEB-INF\
 
<?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>
            jetspeed
        </servlet-name>
        <servlet-class>
            Turbine
        </servlet-class>
        <init-param>
            <param-name>
                 properties
            </param-name>
            <param-value>
                d:/Jetspeed-1.1/src/config/TurbineResources.properties
            </param-value>
        </init-param>
    </servlet>
</web-app>
 

Reply via email to