I have not taken the time to get Turbine authenitcation running. I CVSed
the
source from the CVSROOT and worked on building and configuring
it over the past couple of weeks.
Give me a couple of days to get everything in order.
Notes:
I am using the JAR files from the turbine source
The following is my tomcat.bat file:
@echo off
rem $Id: tomcat.bat,v 1.7 2000/01/13 17:01:44 rubys Exp $
rem A batch file to start/stop tomcat server.
rem This batch file written and tested under Windows NT
rem Improvements to this file are welcome
SET JAVA_HOME=F:\JDK122
set VILLAGE=F:\Infomech\turbine\lib\village-1.1.jar
set JAVAMAIL=F:\Infomech\turbine\lib\\mail-1.1.2.jar
set JAF=F:\Infomech\turbine\lib\activation-1.0.1.jar
set NAMING=F:\Infomech\turbine\lib\jndi-1.2.1.jar
set TURBINE=F:\Infomech\jetspeed\lib\turbine-2.0.jar
set
jsdkJars=.\webserver.jar;.\lib\servlet.jar;.\lib\fop12.jar;.\lib\j2ee.jar
set JETSPEED=f:\Infomech\jetspeed\bin\JetSpeed.jar
set ECS=F:\Infomech\jetspeed\lib\ecs-1.2.jar
set CASTOR=F:\Infomech\jetspeed\lib\castor-0.7.4.jar
set
COCOON=F:\Infomech\jetspeed\lib\Cocoon-1.6.jar;F:\Infomech\jetspeed\lib\coocon-ext-servlet2.2.jar
set XALAN=f:\Infomech\jetspeed\lib\xalan.jar
set XERCES=f:\Infomech\jetspeed\lib\xerces.jar
SET J2EE=f:\tomcat31\lib\j2ee.jar
REM ################ Jetspeed Configuration
###########################3
set
JETSPEED_BUILD=%JETSPEED%;%TURBINE%;%JAVAMAIL%;%VILLAGE%;%ECS%;%JAF%;%NAMING%;%CASTOR%;%COCOON%;%XALAN%;%XERCES%;%LIB%\javac.jar;
set jspJars=.\lib\jasper.jar
set beanJars=.\webpages\WEB-INF\classes\jsp\beans
set miscJars=.\lib\xml.jar
set
appJars=%jsdkJars%;%jspJars%;%beanJars%;%miscJars%;%JETSPEED_BUILD%;.
set sysJars=%JAVA_HOME%\lib\tools.jar
set appClassPath=.\classes;%appJars%
set cp=%CLASSPATH%
set CLASSPATH=%appClassPath%;%sysJars%
if "%cp%" == "" goto next
rem else
set CLASSPATH=%CLASSPATH%;%cp%
:next
if "%1" == "start" goto startServer
if "%1" == "stop" goto stopServer
if "%1" == "run" goto runServer
if "%1" == "env" goto setupEnv
echo Usage:
echo "tomcat (start|run|env|stop)"
echo " start - start tomcat in a separate window"
echo " run - start tomcat in the current window"
echo " env - setup the environment for tomcat"
echo " stop - stop tomcat"
goto cleanup
:startServer
echo Starting tomcat in new window
echo Using classpath: %CLASSPATH%
start java org.apache.tomcat.shell.Startup %2 %3 %4 %5 %6 %7 %8 %9
goto cleanup
:runServer
rem Start the Tomcat Server
echo Using classpath: %CLASSPATH%
java org.apache.tomcat.shell.Startup %2 %3 %4 %5 %6 %7 %8 %9
goto cleanup
:stopServer
rem Stop the Tomcat Server
echo Using classpath: %CLASSPATH%
java org.apache.tomcat.shell.Shutdown %2 %3 %4 %5 %6 %7 %8 %9
goto cleanup
goto cleanup
:setupEnv
set cp=%CLASSPATH%
:cleanup
rem clean up
set CLASSPATH=%cp%
set port=
set host=
set test=
set jsdkJars=
set jspJars=
set beanJars=
set miscJars=
set appJars=
set appClassPath=
set cp=
rem pause
Zvi Avraham wrote:
>
> Hugh,
>
> can you please to summarize all instructions how to run JetSpeed on Tomcat
> on NT,
> Until now I only compiled JetSpeed (not using ANT) and still not configured
> it to run under Tomcat ...
>
> Also I would like to use user authentication using Turbine + DB, the problem
> that I have only M$ Access installed :(, but any 100% Java DB, like
> InstantDB / Hypersonic SQL will be ok too ...
>
> Thanks in advance!
>
> Hugh P Brien wrote:
>
> > I realize most of you will probably not be as excited as I am but I just
> > Jetspeed running on NT.
> > After weeks of attempts I have finnally done it. Now I can try to write
> > my own portlett.
> > I just want thank Kevin and jon for all their patience and help. Again
> > for the record, I would
> > not gone down this road had my Linux box not died. I am a Linux user
> > frustrated by company's inability
> > to make a commitment to Linux.
> > r,
> > Hugh
> >
> > --
> > --------------------------------------------------------------
> > 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]
--
--------------------------------------------------------------
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]