
RMI Example
-----------

1)  Set up your environment.

    Set JAVA_HOME to the root directory of the JDK.
    Set ANT_HOME to the root directory of Ant.
    Set JACORB_HOME to the root directory of JacORB

    Add %JAVA_HOME%\bin;%ANT_HOME%\bin to your PATH

2)  Build the Java code by typing

        ant

3)  Run the RMI Registry

        rmiregistry

4)  Run the server

        server

5)  Wait a minute or so for the server to register its object
    reference with rmiregistry and run the client

        client

    If you get a NameNotFoundException, then wait a minute and
    try it again.


