----- Original Message -----
From: "Hans Williams" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, August 08, 2000 6:58 PM
Subject: Trouble with Jetspeed Setup step #3
> Well I've seemingly gotten everything working; my paths seem good, apache
> and tomcat work together, however there is one more problem.
>
> I don't understand what to do with step #3 of the jetspeed setup steps.
Do
> I need to creat the WEB-INF/web.xml? If so where and what should it
> contain. JAVA_HOME, APACHE_HOME, TOMCAT_HOME all are setup to point to
the
This is a Tomcat question, so for detailed information, see the Tomcat FAQ.
But for Jetspeed (assuming you have a vanilla Tomcat installation) under you
need to have the file [tomcatdir]/webapps/ROOT/WEB-INF/web.xml. This is the
contents of my web.xml file:
<?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>
TurbineResources.properties
</param-value>
</init-param>
</servlet>
</web-app>
> corisponding directories under /usr/local. I have jetspeed installed
> /usr/local/jetspeed, and it's content directory under /usr/local/tomcat.
Are you using Tomcat or Apache to show your simple .html pages? the /content
folder should be in the root directory of your web site. So it could be in
/home/httpd/html (vanilla Apache install) or in
/usr/local/jakarta-tomcat/webapps/ROOT (vanilla Tomcat install).
In either case, your JetspeedResources.properties needs to correspond to
this path as well.
> The class seems up to par, but when I browse to
localhost://servlet/jetspeed
ok, the lack of the :8080 in your url means to me that you want Apache to be
the web server, so put the content folder in Apache's root directory.
> it says not found, and in fact can only find the /examples that came with
> tomcat (but atleast its serving "through" apache! :)
>
> Any help would be great. I have also tried using Orion Server, but still
no
> luck. Unfortunetly I'm a C coder and dont know much about Java and its
> related projects, syntax.
>
Be sure to watch the .log files as you go. Right now you will probably find
errors in the logs kept by apache (usually in the
/etc/httpd/logs.error_log). Once you get to the point where this log file is
not reporting any problems, start looking at the turbine.log file (the path
to which you defined in your TurbineResources.properties file).
If all else fails, according to this maillist, the developers are attempting
to release version 1.2b2 in the next week. One of the key goals to this
release is to provide a no-config-required (sort of) installation.
> Thanks Again.
>
> Hans
> [EMAIL PROTECTED]
>
>
>
>
>
> _______________________________________________________
> Say Bye to Slow Internet!
> http://www.home.com/xinbox/signup.html
>
>
>
> --
> --------------------------------------------------------------
> 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]