use launcher.jar,

changed newline encoding back to windows mode (hopefully)
minor fixes.
This commit is contained in:
hns 2002-11-26 17:41:14 +00:00
parent 2a9515663a
commit 269aeda187

View file

@ -1,91 +1,82 @@
@echo off @echo off
rem Batch file for Starting Helma with a JDK-like virtual machine. rem Batch file for Starting Helma with a JDK-like virtual machine.
:: Initialize variables :: Initialize variables
:: (don't touch this section) :: (don't touch this section)
set JAVA_HOME= set JAVA_HOME=
set HOP_HOME= set HOP_HOME=
set HTTP_PORT= set HTTP_PORT=
set XMLRPC_PORT= set XMLRPC_PORT=
set AJP13_PORT= set AJP13_PORT=
set RMI_PORT= set RMI_PORT=
set OPTIONS= set OPTIONS=
:: Set TCP ports for Helma servers :: Set TCP ports for Helma servers
:: (comment/uncomment to de/activate) :: (comment/uncomment to de/activate)
set HTTP_PORT=8080 set HTTP_PORT=8080
rem set XMLRPC_PORT=8081 rem set XMLRPC_PORT=8081
rem set AJP13_PORT=8009 rem set AJP13_PORT=8009
rem set RMI_PORT=5050 rem set RMI_PORT=5050
:: Uncomment to set HOP_HOME :: Uncomment to set HOP_HOME
rem set HOP_HOME=c:\program files\helma rem set HOP_HOME=c:\program files\helma
:: Uncomment to set JAVA_HOME variable :: Uncomment to set JAVA_HOME variable
rem set JAVA_HOME=c:\program files\java rem set JAVA_HOME=c:\program files\java
:: Uncomment to pass options to the Java virtual machine :: Uncomment to pass options to the Java virtual machine
rem set JAVA_OPTIONS=-server -Xmx128m rem set JAVA_OPTIONS=-server -Xmx128m
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: :: Uncomment to add your own jar files to the class path
:::::: No user configuration needed below this line ::::::: rem set JARS=C:\path\to\some.jar
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Setting the script path :::::: No user configuration needed below this line :::::::
set SCRIPT_DIR=%~d0%~p0 :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Using JAVA_HOME variable if defined. Otherwise, :: Setting the script path
:: Java executable must be contained in PATH variable set SCRIPT_DIR=%~d0%~p0
if "%JAVA_HOME%"=="" goto default
set JAVACMD=%JAVA_HOME%\bin\java :: Using JAVA_HOME variable if defined. Otherwise,
goto end :: Java executable must be contained in PATH variable
:default if "%JAVA_HOME%"=="" goto default
set JAVACMD=java set JAVACMD=%JAVA_HOME%\bin\java
:end goto end
:default
:: Setting HOP_HOME to script path if undefined set JAVACMD=java
if "%HOP_HOME%"=="" ( :end
set HOP_HOME=%SCRIPT_DIR%
) :: Setting HOP_HOME to script path if undefined
if "%HOP_HOME%"=="" (
:: Setting the classpath set HOP_HOME=%SCRIPT_DIR%
set LIB=%SCRIPT_DIR%lib )
set JARS=%LIB%\helma.jar cd %HOP_HOME%
set JARS=%JARS%;%LIB%\jetty.jar
set JARS=%JARS%;%LIB%\crimson.jar
set JARS=%JARS%;%LIB%\xmlrpc.jar :: Setting Helma server options
set JARS=%JARS%;%LIB%\village.jar if not "%HTTP_PORT%"=="" (
set JARS=%JARS%;%LIB%\servlet.jar echo Starting HTTP server on port %HTTP_PORT%
set JARS=%JARS%;%LIB%\regexp.jar set OPTIONS=%OPTIONS% -w %HTTP_PORT%
set JARS=%JARS%;%LIB%\netcomponents.jar )
set JARS=%JARS%;%LIB%\jimi.jar if not "%XMLRPC_PORT%"=="" (
set JARS=%JARS%;%LIB%\apache-dom.jar echo Starting XML-RPC server on port %XMLRPC_PORT%
set JARS=%JARS%;%LIB%\jdom.jar set OPTIONS=%OPTIONS% -x %XMLRPC_PORT%
set JARS=%JARS%;%LIB%\mail.jar )
set JARS=%JARS%;%LIB%\activation.jar if not "%AJP13_PORT%"=="" (
set JARS=%JARS%;%LIB%\mysql.jar echo Starting AJP13 listener on port %AJP13_PORT%
set OPTIONS=%OPTIONS% -jk %AJP13_PORT%
:: Setting Helma server options )
if not "%HTTP_PORT%"=="" ( if not "%RMI_PORT%"=="" (
echo Starting HTTP server on port %HTTP_PORT% echo Starting RMI server on port %RMI_PORT%
set OPTIONS=%OPTIONS% -w %HTTP_PORT% set OPTIONS=%OPTIONS% -p %RMI_PORT%
) )
if not "%XMLRPC_PORT%"=="" ( if not "%HOP_HOME%"=="" (
echo Starting XML-RPC server on port %XMLRPC_PORT% echo Serving applications from %HOP_HOME%
set OPTIONS=%OPTIONS% -x %XMLRPC_PORT% set OPTIONS=%OPTIONS% -h "%HOP_HOME%
) )
if not "%AJP13_PORT%"=="" ( if not "%JARS%"=="" (
echo Starting AJP13 listener on port %AJP13_PORT% set JARS=-classpath %JARS%
set OPTIONS=%OPTIONS% -jk %AJP13_PORT% )
)
if not "%RMI_PORT%"=="" ( :: Invoking the Java virtual machine
echo Starting RMI server on port %RMI_PORT% %JAVACMD% %JAVA_OPTIONS% %JARS% -jar launcher.jar %OPTIONS%
set OPTIONS=%OPTIONS% -p %RMI_PORT%
)
if not "%HOP_HOME%"=="" (
echo Serving applications from %HOP_HOME%
set OPTIONS=%OPTIONS% -h %HOP_HOME%
)
:: Invoking the Java virtual machine
%JAVACMD% %JAVA_OPTIONS% -classpath %JARS% helma.main.Server %OPTIONS%