Login
Remember
Register
Ask a Question
What are the steps involved to write RMI based programs?
+1
vote
asked
May 13, 2021
in
JAVA
by
rajeshsharma
What are the steps involved to write RMI based programs?
#java
rmi-programs
Java-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
May 13, 2021
by
rajeshsharma
There are 6 steps which are performed to write RMI based programs.
Create the remote interface.
Provide the implementation of the remote interface.
Compile the implementation class and create the stub and skeleton objects using the rmic tool.
Start the registry service by the rmiregistry tool.
Create and start the remote application.
Create and start the client application.
...