I'm having trouble getting it up and running. Is this script in sync with the latest
run.bat script that ships with James?
It looks like this:
Thanks / Mark
@echo off
rem
rem Phoenix start script.
rem
rem Author: Peter Donald [[EMAIL PROTECTED]]
rem
rem The user may choose to supply parameters to the JVM (such as memory settings)
rem via setting the environment variable PHOENIX_JVM_OPTS
rem
rem
rem Determine if JAVA_HOME is set and if so then use it
rem
if not "%JAVA_HOME%"=="" goto found_java
set PHOENIX_JAVACMD=java
goto file_locate
:found_java
set PHOENIX_JAVACMD=%JAVA_HOME%\bin\java
:file_locate
rem
rem Locate where phoenix is in filesystem
rem
if not "%OS%"=="Windows_NT" goto start
rem %~dp0 is name of current script under NT
set PHOENIX_HOME=%~dp0
rem : operator works similar to make : operator
set PHOENIX_HOME=%PHOENIX_HOME:\bin\=%
:start
if not "%PHOENIX_HOME%" == "" goto phoenix_home
echo.
echo Warning: PHOENIX_HOME environment variable is not set.
echo This needs to be set for Win9x as it's command prompt
echo scripting bites
echo.
goto end
:phoenix_home
rem echo "Home directory: %PHOENIX_HOME%"
rem echo "Home ext directory: %PHOENIX_HOME%\lib"
rem
rem This is needed as some JVM vendors do foolish things
rem like placing jaxp/jaas/xml-parser jars in ext dir
rem thus breaking Phoenix
rem
rem Kicking the tires and lighting the fires!!!
%PHOENIX_JAVACMD% -Djava.ext.dirs=%PHOENIX_HOME%\lib;c:\TIBCO\TIBRV\lib
%PHOENIX_JVM_OPTS% -jar %PHOENIX_HOME%\bin\phoenix-loader.jar %1 %2 %3 %4 %5 %6 %7 %8
%9
:end
-------------------------------------------------------------- --
Visit our Internet site at http://www.reuters.com
Any views expressed in this message are those of the individual
sender, except where the sender specifically states them to be
the views of Reuters Ltd.
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>