Rosimildo: Aug 13, 2000:

Some notes on how to compile and run this example application.

Steps:

1. Compiling the server side

   + Assuming you are under: $(TOP)\src\examples\rtems_rrm
     ( using CygWin )

	  cd server
	  make


2. Compiling the Client side
   + use the jdk 1.3 idl compiler ( jidl ) to create the java 
binds for this interface.

Assuming you are under: $(TOP)\src\examples\rtems_rrm

  cd client
  idlj ../server/rtems_rrm.idl


  NOTE: You need to update the naming service parameters.
  Edit module RtemsRRM.java ( main routine ). This needs to
  be fixed later.

  // FIXME: we should get these from the command line.
  String namingServiceHost = "rps1";
  String namingServicePort = "6000";

  javac *.java


3. Start the naming service: as of Aug 00, there is a bug in the Sun's ORB
JDK 1.3 orb that it does not work with omniNames, so you must use the
JDK's naming service ( tnameserv.exe )

   ex: tnameserv -ORBInitialPort 6000

6. Load RTEM implementation to the target, using GRUB, NetBoot or 
any mechanism that you use to to that.


7. Start client:

   java RtemsRRM



