Update to new extended start scripts from Antclick distribution.

Including jetty.jar and servlet.jar into the classpath.
This commit is contained in:
hns 2002-07-24 18:33:14 +00:00
parent 81f23f6a31
commit 07d457f558
2 changed files with 30 additions and 11 deletions

14
hop.bat
View file

@ -2,12 +2,16 @@
rem Batch file for starting Hop with a JDK-like virtual machine.
set JARS=lib\helma.jar;lib\crimson.jar;lib\village.jar;lib\jsdk.jar
rem Set Helma TCP ports
set WEB_PORT=8080
set XMLRPC_PORT=8081
rem Set Classpath
set JARS=lib\helma.jar;lib\crimson.jar;lib\village.jar;lib\servlet.jar;lib\jetty.jar
set JARS=%JARS%;lib\regexp.jar;lib\netcomponents.jar;lib\jimi.jar;lib\apache-dom.jar
set JARS=%JARS%;lib\mail.jar;lib\activation.jar;lib\mysql.jar;lib\jdom.jar;lib\minml.jar
set HOP_PORT=8080
echo Starting Web server on port %WEB_PORT%
echo Starting XML-RPC server on port %XMLRPC_PORT%
echo Starting Web server on port %HOP_PORT%
java -classpath c:\winnt\java\packages\rmi.zip;%JARS% helma.main.Server -w %HOP_PORT%
java -classpath %JARS% helma.main.Server -w %WEB_PORT% -x %XMLRPC_PORT%