CONTENTS | PREV | NEXT | Java Remote Method Invocation |
The rmic stub and skeleton compiler is used to compile the appropriate stubs and skeletons for a specific remote object implementation. The compiler is invoked with the package qualified class name of the remote object class. The class must previously have been compiled successfully.
- The location of the imported classes may be specified either with the CLASSPATH environment variable or with the -classpath argument.
- The compiled class files are placed in the current directory unless the -d argument is specified following the same mechanism for writing class files as javac.
- The -keepgenerated argument retains the generated java source files for the stubs and skeletons.
- The -show option displays a graphical user interface for the program.
- All other javac command line arguments are applicable and can be used with rmic.