Simple RMI distributed application used to sum two numbers, client/server architecture.
Stub and Skeleton generated by rmic tool.
- Open console and go to files directory.
- Compile javac .java.
- If you want you can generate Stub and Skeleton by rmic -keep -v1.1 AdderImpl.
- Run binder by rmiregistry (don't close console).
- (From new console) Start server by java AdderServer.
- (From new console) Start client by java AdderClient.