Java RMI
javac -d . *.java
rmic
(not in JDK 1.5) to generate stub
and skeleton .class files from the implementation and
interface:rmic -d . examples.hello.HelloImpl
rmiregistry &
java -Djava.rmi.server.codebase=http://myhost/~myusrname/myclasses/ -Djava.security.policy=$HOME/mysrc/policy examples.hello.HelloImpl
9 of 22