
Submit.nrx and NRServer.nrx are companion java programs that setup a
client/server environment. Submit, submits a netrexx source file to NRSever
which compiles it, via locahost on port#8080.

The purpose of this is quite simple. NRServer never terminates and thus keeps
the JVM in memory. The NetRexx source files submitted to it are compiled almost
immediately, without the added wait for the JVM to reload...

To run you must first fire up the server, then submit your jobs to it.

Before you dive into it...

 - be sure that localhost is available on your machine.
 - be sure to have all the included classfiles in some directory in the
   classpath
 - be sure that NetRexx is installed...
 - from windowed session. In OS/2 I use:
   start "NRServer" /n /b /win /min java -norestart NRServer
 - opionally use the included SER.CMD file

Once the NRServer is running, Submit your source like this:
java -norestart Submit NRSourceFile.nrx or optionally use the included SUB.CMD
file...

This package contains the 1.0 version of both Submit and NRServer. Look at
www.erols.com/mcbrides for updates.

This program was developed using OS/2 3.0, JDK118 and NetRexx 1.148.


