User: hiram
Date: 00/11/28 16:19:42
Added: src/scripts/run run.bat run.sh run.jar
Removed: src/scripts/run client.bat client.sh policy server.bat
server.sh
Log:
Chanaged the spyderMQ standalone server so that it is a stripped down jBoss app
server with
the spyderMQ service running. This will allow us to work on integrating with jBoss
better and
in spyderMQ can now use many of the base features of the app server such as Logging,
Naming,
JMX, Configuration, etc.
Revision Changes Path
1.1 spyderMQ/src/scripts/run/run.bat
Index: run.bat
===================================================================
@echo off
@if not "%ECHO%" == "" echo %ECHO%
@if "%OS%" == "Windows_NT" setlocal
set CLASSPATH=%CLASSPATH%;run.jar
REM Add all login modules for JAAS-based security
REM and all libraries that are used by them here
set CLASSPATH=%CLASSPATH%;..\lib\jdbc2_0-stdext.jar;..\lib\jboss-jaas.jar
java -classpath "%CLASSPATH%" org.jboss.Main %1 %2 %3 %4 %5 %6 %7 %8 %9
pause
1.1 spyderMQ/src/scripts/run/run.sh
Index: run.sh
===================================================================
#!/bin/sh
# Minimal jar file to get JBoss started.
CLASSPATH=$CLASSPATH:run.jar
# Add all login modules for JAAS-based security
# and all libraries that are used by them here
CLASSPATH="$CLASSPATH:../lib/jdbc2_0-stdext.jar:../lib/jboss-jaas.jar"
echo $CLASSPATH
java -server -classpath $CLASSPATH org.jboss.Main $@
1.1 spyderMQ/src/scripts/run/run.jar
<<Binary file>>