Steve,
Thanks for the reply.
I changed my tomcat port to 80 (from 8080) when I installed tomcat.  I did try change to standard DOS paths in
my web.xml file.  But my thought is I've overlooked a critical step, http://localhost/servlet/jetspeed
is not a valid servlet URL.  Does my web.xml file look correct?  and is it in the right place? 
 
Thanks much for your time.
 
Greg
 
----- Original Message -----
From: Steve B.
Sent: Sunday, May 21, 2000 11:31 AM
Subject: Re: Problems out of the gate

 
Also, I do not know if it makes any deifference, but in web.xml I use standard DOS paths, ie.
      d:\Jetspeed-1.1\src\config\TurbineResources.properties
 
Let me know if I can help as I am using basically the same setup (though I use JDK1.2)
 
Steve B.
----- Original Message -----
Sent: Saturday, May 20, 2000 6:46 AM
Subject: Problems out of the gate

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