problem in start up my RMI server(under ISP) so that it can recieve remote calls over Internet.--Jav
- by Lokesh Kumar
i m creating a Client/Server application in which my server and client can be on the same or on different machines but both are under ISP.
My RMI programs:-
-Remote Intreface:-
//Calculator.java
public interface Calculator
extends java.rmi.Remote {
public long add(long a, long b)
throws java.rmi.RemoteException;
public long…