home *** CD-ROM | disk | FTP | other *** search
- @echo off
- set TOPDIR=..\..
-
- rem This BAT script explains and carries out the process of compiling
- rem and running the stock example. The important commands are
- rem summarized here:
- rem
- rem javac -d ..\.. *.java
- rem rmic -d ..\.. examples.stock.StockServer examples.stock.StockApplet
- rem java examples.stock.StockServer
- rem appletviewer index.html
- rem
- rem NOTE: The "call" command is used below to execute the other BAT
- rem script "rmic" so that it returns to this script upon
- rem completion. The "call" is not be necessary when these commands
- rem are executed directly from the command prompt.
-
- echo ************************************************************************
- echo *
- echo * This script goes through the complete process of compiling and
- echo * running the stock example on your local machine.
- echo *
- echo * (The stock server is bundled with its own registry, so there
- echo * is no need to create one.)
- echo *
- echo * To compile and run server, temporarily add root directory
- echo * of these classes (..\..) to CLASSPATH...
- echo *
- @echo on
- set ORIGCLASSPATH=%CLASSPATH%
- set CLASSPATH=%TOPDIR%;%CLASSPATH%
- @echo off
-
- echo *
- echo * Compile all Java sources files...
- echo *
- @echo on
- javac -d %TOPDIR% *.java
- @echo off
-
- echo *
- echo * Run rmic to generate stub and skeleton classes for StockServer
- echo * StockApplet...
- echo *
- @echo on
- call rmic -d %TOPDIR% examples.stock.StockServer examples.stock.StockApplet
- @echo off
-
- echo *
- echo * Start the server examples.stock.StockServer...
- echo *
- @echo on
- start java examples.stock.StockServer
- @echo off
-
- echo *
- echo * Please wait until a message appears in the server process's window
- echo * indicating that it has been bound to the registry.
- echo *
- pause
-
- echo *
- echo * Restore the original CLASSPATH at this point, so that the appletviewer
- echo * will not have any of these example classes locally available through
- echo * CLASSPATH. Therefore, it must load them through the codebase...
- echo *
- @echo on
- set CLASSPATH=%ORIGCLASSPATH%
- @echo off
-
- echo *
- echo * Start the appletviewer...
- echo *
- echo *---------------------------------------------------------------------
- echo * NOTE: Expect a SecurityException -- ignore it if there is only one
- echo *---------------------------------------------------------------------
- @echo on
- appletviewer index.html
- @echo off
-
- echo *
- echo * If all the preceding steps were successful, the server
- echo * processes is still running. You can manually destroy this window
- echo * to clean up before running this script again.
- echo *
-
-