@echo off @REM --------------------------------------------------------- @REM -- @REM -- Copyright (c) 2008 Regiscope Digital Imaging Co., LLC All rights reserved. @REM -- @REM -- This batch file is an example of how to start the DBReplicator server @REM -- @REM -- REQUIREMENTS: @REM -- To Start the DBReplicator @REM -- You must have the data source jar files as well as the @REM -- DBReplicator jar in your classpath. @REM -- @REM -- This file is for use on Windows systems @REM --------------------------------------------------------- call setpath.bat @if not "%JAVA_HOME%" == "" goto cont1 echo Warning : JAVA_HOME environment variable is not set. pause @goto end :cont1 @REM --------------------------------------------------------- @REM -- start DBReplicator server @REM --------------------------------------------------------- title publication server %JAVA_HOME%\bin\java -Xmx%XMX% -Djava.rmi.server.hostname=%SERVER_NAME% -classpath %JDBC_classpath% org.dbreplicator.repconsole.StartServer pubserver :end