An open API service indexing awesome lists of open source software.

https://github.com/iulianoroberto/javarmi_adder

Simple RMI application used to sum two numbers, client/server architecture.
https://github.com/iulianoroberto/javarmi_adder

adder distributed distributed-systems java-rmi rmi rmiregistry

Last synced: 2 months ago
JSON representation

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

Awesome Lists containing this project

README

        

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

Stub and Skeleton generated by rmic tool.

![alt text](https://github.com/iulianoroberto/Java_RMI_adder/blob/main/Images/RunTime.PNG)

## 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***.