Click here to Skip to main content
15,886,799 members
Everything / RMI

RMI

RMI

Great Reads

by Marius Iulian Mihailescu, Stefania Loredana Nita
The main purpose of this article is to describe the advantages of using RMI in the process of developing distributed applications using Java. RMI is one of the classic methods compared to other modern methods (e.g. .NET Remoting, WCF Services etc.), used for accessing objects remotely.

Latest Articles

by Marius Iulian Mihailescu, Stefania Loredana Nita
The main purpose of this article is to describe the advantages of using RMI in the process of developing distributed applications using Java. RMI is one of the classic methods compared to other modern methods (e.g. .NET Remoting, WCF Services etc.), used for accessing objects remotely.

All Articles

Sort by Score

RMI 

8 Mar 2015 by Marius Iulian Mihailescu, Stefania Loredana Nita
The main purpose of this article is to describe the advantages of using RMI in the process of developing distributed applications using Java. RMI is one of the classic methods compared to other modern methods (e.g. .NET Remoting, WCF Services etc.), used for accessing objects remotely.
3 Nov 2017 by Richard MacCutchan
You can modify your server and implementation as follows: public class FacServer.java { public static void main(String a[]) throws Exception { int maximum = 5; // default max value if (a.length > 0) maximum = Integer.parseInt(a[0]); FacImpl obj = new FacImpl(maximum); ...
30 Apr 2015 by OriginalGriff
We do not do your homework: it is set for a reason. It is there so that you think about what you have been told, and try to understand it. It is also there so that your tutor can identify areas where you are weak, and focus more attention on remedial action.Try it yourself, you may find it...
30 Apr 2015 by Maciej Los
Google[^] is your Friend ;)Java RMI: Hello world![^]Java Examples: Even Odd[^]
4 Nov 2017 by Member 13441993
Hi, I am new in Java RMI and trying to do some learning in different condition. I don't know what I am trying to do is appropriate or not. I am trying to set a variable value during starting the server which is accessible to client. Let me explain what I have tried so far and what I am trying...
4 Nov 2017 by Member 13441993
Thanks a lot. That worked like a charm. I have edited the code in following way. FacImpl import java.rmi.server.*; import java.util.*; import http://java.io.*; import java.math.*; public class FacImpl extends UnicastRemoteObject implements FacInt { int limit; public FacImpl(int limit) throws...
30 Apr 2015 by Member 10179072
I want the code for RMI program in which client sends a number to server and server replies that number is even or odd