Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 592 Bytes

README.md

File metadata and controls

14 lines (11 loc) · 592 Bytes

Java_RMI_adder

Simple RMI distributed application used to sum two numbers, client/server architecture.

Stub and Skeleton generated by rmic tool.

alt text

How to run?

  • 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.