300+ TOP JAVA RMI Interview Questions and Answers

JAVA RMI Interview Questions for freshers experienced :-

1. What is the method that is used by the Rmi client to connect to Remote Rmi servers?

  • RMi is known as Remote method invocation and to for the RMi client to connect to remote RMi server first thing is to get hold on a reference of the server.
  • The Naming.lookup method is used to as a mechanism that is used to provide the way to obtain the references to remote servers. the remote servers can be obtained by using the remote calls that return remote references. this also uses a stub to make a remote method call used in rmiregistry that sends back to remote reference.
  • Then the references consists of a server hostname and port number, which allow clients to locate a virtual machine. this virtual machine is used to allow the remote object to be found and connected. after the remote reference are provided to RMi client, then it will be easy to use hostname and port that is provided to open the socket connection to a remote server.

2. What is the function Of Java.net.unknownhostexception?

the java.net.unknownhostException method is used as remote calling and for callback routine fail. RMi uses default settings to resolve the server hostname like WiNs names, dhcP names, etc. this happens due to which RMi client invokes the remote method using the reference that consists of unresolved server hostname and the client will produce unknownhostException. RMi servers provide fully qualified hostname or iP address to resolve all RMi clients error reports. RMi provides an operation to remotely callback a program that serves RMi object and provide resolvable hostname to pass it to the RMi clients. unkownhostException is thrown when an applet is failed to provide a useable server hostname. the property java.rmi.server.hostname can be set to get from the server the correct iP address or hostname.

3. What are the Reasons Of Getting unknownhostexception Error Even if all the setting are Properly configured?

the unkownhostException error can come for many reasons. to find out first there is a need to know the network’s name service that is having a fully-qualified hostname recognized by RMi host. the possible problems that might come are:

there is a possibility of having misconfigured dhcP servers that allows fully-qualified domain name of RMi server machines. RMi client in this case try to access the outside server’s dhcP domain that will make it unavailable for the server.

there is a possibility of having the error due to WiNs server. it is possible that only registered users might not be reachable by hosts.

there is a possibility of having a firewall that is blocking the RMi client and server side requests. if the server resides inside the firewall and the client outside then the client won’t be able to make any remote calls to the server that is inside due to the firewall.

4. What is the use Of http-tunneling in Rmi?

httP-tunneling is a method that requires no setup and works within the firewall environment. it allows the handling of httP through proxy server and doesn’t allow regular outbound tcP connections. if the RMi fails to make any connection specially sOcKs then connection is made through an intended server that allow the httP proxy server to be configured. this will allow the request to be passed through the proxy server one by one.

the forms of httP-tunneling are http-to-port: where the RMi attempt to use httP POst request using a uRL that will be directed at the hostname and port number of the server that is given. if the proxy accepts the uRL it will forward a POst request to listen to RMi server that will remove the request of the name. there is an http-to-cgi tunneling that will consists of the requests and allow the proxy request to be binded to their defined port numbers.

5. how does distributed Garbage collection Manages the disconnections detected On the client side?

RMi uses a runtime client that a virtual machine detects of the remote object that is not referenced locally. it notify the server in came of any disconnections and this way the server can be updated by the object’s set. the garbage collector that is distributed associate an address with each client remote object reference.

it also renew the remote objects while the client still consists of the references. this mechanism will allow the abnormal termination of the clients so that server can hold the remote objects that are not referenced using the message that are stopped running. the function system.exit() can be invoked for abnormal termination, as it doesn’t allow the RMi runtime to send a proper messages to the server. this function will terminate the client virtual machine and will keep the remote references that will be cleaned up before exiting.

the other functions that are used for this are:

system.gc();
system.runfinalization();

6. What is the Relationship between the Rmi and corba?

RMi is a distributed object system that provides and enable to easily develop the distributed Java applications. it is easier to develop applications using the RMi method then using the sockets. it doesn’t require any protocol for design that makes it less prone to error for the tasks performed by it. RMi is allows the local method to be called from a local class file and the remote methods are interpreted and are sent back to the callers.

the cORba also having the same features that are seen in RMi. it is a platform and language independent architecture that can be run on any platform. it can be located from anywhere on the network and can be used in any language that has a mapping with idL (interface definition language). the objects of this are specified with interfaces that are specified in the interface language.

7. What are the different terms that are used in Rmi?

there are different terms that are used in RMi that helps in calling the remote servers and allow an easy to use terminology to be created:

  • Remote object: it is an object that is provided on another computer to request the object by sending a message to the object to the remote servers.
  • server object: it is an object of the server side that receive the request and respond to the request of the client in success or failure.
  • rmiregistry: it is the registry that keeps the look ups of all the objects in a list by given name. this registry consists the list of all the components that are given in it.
  • Rmic: it is a compiler for RMi object.
  • after creating the object the compiler compiles the object and it will generate the actual code that is to be transferred to the client side.

8. What are the different types Of classes that are used in Rmi?

the classes define the blueprint that consists of the methods and behavior of a particular structure.

the classes are:

Remote class: it is the class that consists of the instances that can be accessed remotely from the server and also consists of different properties that are required to be accessed by the client and server during request and response time.

Remote class object: Wherever this object is defined the instances of the class can be accessed using other object. On other computers that are not in network it can be accessed through the use of object handles.

serializable class: it is the class that consists of instances that can be marshaled or turned in a linear sequence to represent the bits.

serializable class objects: it allows the request to be transmitted from one computer to another. it allows the easy implementation of the serializable class.

9. What are the different conditions that has to be Kept in Mind When using serialization concept?

the conditions that has to be kept in mind while using serialization is that:

  • the class should be declared as public and it should implement the serializable version identifier that is given as serialVersionuid to read the serial versions that are being loaded or updated.
  • the class should not consists of any argument constructor and all the fields of the class should have a serializable field in it. this can be either primitive types or serializable objects type.
  • the class doesn’t itself declare any methods and an execption can be made in the fields that are made transient and these are ignored during serialization.

10. What is the Process Of Making a class serializable?

to create a class serializable there is mechanism of serializing an object on the client code.

there are four things that are required to make a class serializable and these are:

  • the first thing that has to be done is to implement the serializable interface that makes the process easy to convert the set of object references to the linear stream of bytes.
  • check whether the instance level that is locally defined state is in serialized mode or not. check that it has been implemented properly or not.
  • check whether the superclass state in the serialized phase is properly managed and adjusted. if it is adjusted then with the help of few function the process can create a class serializable.
  • then use the methods like equals( ) and hashcode( ) to override the already used functions. this will allow the addition of new code to be inserted
JAVA RMI Interview Questions
JAVA RMI Interview Questions

11. What is the Procedure Of implementation Of the serializable interface?

the implementation is the easy phase of the serializable class. at first this interface remains as an empty interface and it declares no methods or behavior at all. it has additing feature that is added to the implements serializable class to follow the class declarations. it is not required to make every object as serializable as there will also be some classes that might not be having any serialization required.

for example, an instance of a file that actually represents a file gets created by using file file = new file(“c:\career\ride”);

so to make this work there is no surity that is it require a serialized code to be written. the file class is having a different lifecyle than the serialized data and modification in it might remove the entire information. there are also platform dependencies that involves native code not used for serialization.

12. What is the Main Purpose Of distributed Object applications in Rmi?

RMi consists of a server and a client program. the application in RMi creates a number of remote objects that makes the references to the objects that are to be accessible. this way when a client makes a call to the method on remote objects then the reference is passed to one or more remote objects in server.

it then invokes certain methods on them to provide few functionalities. RMi provides the mechanism to communicate and pass the information from one part to another using the distributed object applications. it requires to locate the remote objects so that the registry can be maintained for the remote objects with RMi’s naming facility, rmiregistry, and the application that can pass the remote object references and return it as a normal operation.

13. How does the communication With Remote Objects Occur in Rmi?

RMi handles the remote objects that are being provided between the server and client computers. the difference between the objects are handled using RMi as well. RMi uses the standard method invocation to communicate between one object or another object. it loads the class byte-codes for objects that are passed using the defined parameters and return the values to the server in case of failure or success of it. RMi also allows the transmission to be done when passing the data as well.

the string that is used by the RMi registry is “rmi://hostname:port/remoteObjectName”, this allows the RMi registry to know the correct object and create a connection between different objects through this. if the hostname is not defined then local host can be used instead of it and this will also establish the connection

14. What are the steps that are involved in Rmi distributed applications?

RMI distributed applications uses certain steps that defines the path mentioned in the registry. it has the following steps:

  • it uses the registry that stores the location and important information about the remote object.
  • it uses the registry to obtain the references to a remote object that keeps all the information and allow further communication to be done.
  • the server calls the registry to associate the name with the remote object and then the client sends the request for the object.
  • the client searches the remote object by its name in the registry on the server and invokes a method on it.
  • RMI uses a web server to load the bytecodes of classes to use the communication for the client and server.
  • RMI can load the class using the internet protocols like httP, ftP, file, and etc.

15. What is the use Of Java.rmi.remote interface in Rmi?

  • RMI uses a remote interface declaring the methods that are invoked from a virtual machine and further forwarded to the server to take any request coming from the client.
  • Java.rmi.Remote provides an interface declaring a set of methods that invokes the virtual machine to fulfill the requirements.
  • this allows the extension of the interface directly or indirectly.
  • Each method declaration in remote interface must have the exception policy such as java.rmi.RemoteException or java.io.iOException or java.lang.Exception clause that can be made application specific and it reduces the effort to extend java.rmi.RemoteException.
  • Remote method declares the object as a parameter or the return value and that has to be declared using the remote interface

16. Write a Program to show the Remote interface using Rmi?

Remote interface allows the extension of the interface of java.rmi.Remtoe.

this interface extends it non-remotely using the condition that this extend the interface when all the methods used are also extended in the interface that satisfy all the requirements of a remote method declaration.

the example code shows the remote interface that is used in general:

public interface bank extends java.rmi.Remote
{
public void deposit(float amount)
throws java.rmi.RemoteException;
public void withdraw(float amount)
throws OverdrawnException, java.rmi.RemoteException;
public float getbalance()
throws java.rmi.RemoteException;
}

the class of this extends the java.rmi.Remote to inherit the behavior and properties used by this specified class.this also uses several other class objects for example:

java.rmi.server.RemoteObject and java.rmi.server.Remoteserver.

17. Write a Program to show the distributed Object Model using Rmi?

to implement the distributed object model a class is required that implements a remote interface extending the functionality of java.rmi.Remote and other classes such as java.rmi.server.unicastRemoteObject.

the implementation then take the responsibility for exporting the object having the correct use of remote semantics provided using hashcode, equals, and tostring methods that are inherited from the java.lang.Object class.

the code is given below as:

public void withdraw(float amount) throws OverdrawnException,
RemoteException
// write your own statements
}
public float getbalance() throws RemoteException
{
// write your own statements
}

18. Why are stubs used in Rmi?

RMi uses a mechanism that is standard for all the system and it is used to communicate with all the remote objects that are available. so, stubs are used to store the objects in the database so that it can be used later on. a stub is used for remote objects that act as a client’s local proxy for the remote object. this way the caller of the object calls the method on the local stub that becomes responsible to carry out the method call on the remote objects.

RMi uses stub for a remote object that implements the same set of remote interfaces that is implemented by remote object. the stub is used to initiate the connection between the object and the java virtual machine. it marshalls that includes write and transmit the parameters to the remote java virtual machine that includes the method invocation. it allows the unmarshalling of the object to return the true value or the exception to be returned to the caller. the stub is used to hide the serialization of the parameter at network-level for the communication to be proceeded without any disturbance.

19. Why is the function Or Role Of skeleton in Rmi?

Every object that can be remotely accessed have a corresponding skeleton that functions like the original object. it is responsible for dispatching the call that is made to the actual remote object for the implementation and allow it to be implemented using the services provided by RMi. it allows the incoming method invocation to unmarshals i.e. only read the parameters used for the remote method. it invokes the method that is used by the actual remote object and after implementation marshals the result to the caller who is the original caller for the object.

20. How does dynamic class Loading happens in Rmi?

RMi uses different parameters with values and exceptions and they all has to be passed for RMi calls. it creates the object that is serializable.

RMi uses the serialization mechanisms to transfer the data from one machine to another using the virtualization concept. this is done so that the caller can receive the files on time. When the parameters return the values of the method invocation and unmarshals it then the live objects gets received by the java virtual machines.

the unmarshalling process tries to resolve the name issue of the classes by loading the context class using the current thread. RMi provides the dynamic loading of the class definition to be done using actual types of objects that are passed as parameters and return values for RMi.

this allows the dynamic loading of the remote stub classes that are related to a particular remote object that takes part in implementation of the classes.

RMi also uses special subclasses of java.io.ObjectOutputstream and java.io.Objectinputstream for marshilling and unmarshalling.

21. What is the difference between url instance and urlconnection instance?

a uRL instance represents the location of a resource, and a uRLconnection instance represents a link for accessing or communicating with the resource at the location.

22. How do i Make a connection to url?

You obtain a uRL instance and then invoke openconnection on it. uRLconnection is an abstract class, which means you can’t directly create instances of it using a constructor. We have to invoke openconnection method on a uRL instance, to get the right kind of connection for your uRL. Eg. uRL url;

uRLconnection connection;
try {
url = new uRL(”…”);
connection = url.openconnection();
} catch (MalformeduRLException e) { }

23. What is a socket in Java Networking and Rmi?

a socket is one end-point of a two-way communication link between two programs running on the network. a socket is bound to a port number so that the tcP layer can identify the application that data is destined to be sent. socket classes are used to represent the connection between a client program and a server program. the java.net package provides two classes–socket and serversocket–which implement the client side of the connection and the server side of the connection, respectively.

24. What information is Needed to create a tcp socket?

the Local system’s iP address and Port Number. and the Remote system’s iPaddress and Port Number.

25. What are the two important tcp socket classes?

socket and serversocket. serversocket is used for normal two-way socket communication. socket class allows us to read and write through the sockets. getinputstream() and getOutputstream() are the two methods available in socket class.

26. When Malformedurlexception and unknownhostexception throws?

When the specified uRL is not connected then the uRL throw MalformeduRLException and if inetaddress? methods getbyName and getLocalhost are unable to resolve the host name they throw an unknownhostException.

27. What does Rmi stand for?

it stands for Remote method invocation.

28. What is Rmi?

RMi is a set of aPis that allows to build distributed applications. RMi uses interfaces to define remote objects to turn local method invocations into remote method invocations.

29. What is the difference between the file and Randomaccessfile classes?

the file class encapsulates the files and directories of the local file system. the Randomaccessfile class provides the methods needed to directly access data contained in any part of a file.

30. What interface Must an Object implement before it can be Written to a stream as an Object?

an object must implement the serializable or Externalizable interface before it can be written to a stream as an object.

31. Explain Rmi architecture?

RMi uses a layered architecture, each of the layers could be enhanced or replaced without affecting the rest of the system. the details of layers can be summarised as follows:

application Layer: the client and server program
stub & skeleton Layer: intercepts method calls made by the client/redirects these calls to a remote RMi service.
Remote Reference Layer: understands how to interpret and manage references made from clients to the remote service objects.
transport layer: based on tcP/iP connections between machines in a network. it provides basic connectivity, as well as some firewall penetration strategies.

32. What is the difference between Rmi & corba?

the most significant difference between RMi and cORba is that cORba was made specifically for interoperability across programming languages. that is cORba fosters the notion that programs can be built to interact in multiple languages. the server could be written in c++, the business logic in Python, and the front-end written in cObOL in theory. RMi, on the other hand is a total Java solution, the interfaces, the implementations and the clients–all are written in Java.

RMi allows dynamic loading of classes at runtime. in a multi-language cORba environment, dynamic class loading is not possible. the important advantage to dynamic class loading is that it allows arguments to be passed in remote invocations that are subtypes of the declared types. in cORba, all types have to be known in advance. RMi (as well as RMi/iiOP) provides support for polymorphic parameter passing, whereas strict cORba does not. cORba does have support for multiple languages which is good for some applications, but RMi has the advantage of being dynamic, which is good for other applications.

33. What are the services in Rmi ?

an RMi “service” could well be any Java method that can be invoked remotely. the other service is the JRMP RMi naming service which is a lookup service.

34. How Many types Of Protocol implementations does Rmi have?

RMi has at least three protocol implementations: Java Remote method Protocol(JRMP), internet inter ORb Protocol(iiOP), and Jini Extensible Remote invocation(JERi). these are alternatives, not part of the same thing, all three are indeed layer 6 protocols for those who are still speaking Osi reference model.

35. Does Rmi-iiop support dynamic downloading Of classes?

RMi-iiOP doesn’t support dynamic downloading of the classes as it is done with cORba in dii (dynamic interface invocation).actually RMi-iiOP combines the usability of Java Remote method invocation (RMi) with the interoperability of the internet inter-ORb Protocol (iiOP).so in order to attain this interoperability between RMi and cORba,some of the features that are supported by RMi but not cORba and vice versa are eliminated from the RMi-iiOP specification.

36. Can Rmi and corba based applications interact ?

Yes they can. RMi is available with iiOP as the transport protocol instead of JRMP.

37. What is Remote Procedure calls, Rpc?

a request from one program that is located in one computer can be used by another computer in a network environment without understanding the underlying network details. this is done by a protocol called Remote Procedure calls. in this client / server environment (network environment), the request is from a client to the server that provides the service from a server.

RPc is also called as inter-process communication. RPc extends the normal procedure calls across the network which is necessary in distributed computing models and for harnessing the power of the multiple processors.

in distributed systems, a client calls a procedure stored on a server. this is called calling a remote procedure stored on a server. though, the call is made as if the procedure was stored on the local machine.

The steps in which a RPc is made are:

  • the client calls the procedure
  • the client stub builds the message.
  • the message is sent over the network.
  • the server Os gives the message to the server stub.
  • the server stub unpacks the message.
  • the stub makes a local call to the procedure.
  • the server does the work and returns the result to the server stub.
  • the stub packs the message and traps to the kernel.
  • the remote kernel sends the message the client kernel.
  • the client kernel gives the message to the client stub.
  • the client stub unpacks the result and gives to the client.

38. Explain the advantages and disadvantages Of Rpc?

Advantages of RPc:

  1. server independent
  2. Process-oriented and thread oriented models supported by RPc
  3. the development of distributed systems is simple because it uses straightforward semantics and easier.
  4. Like the common communications between the portions of an application, the development of the procedures for the remote calls is quite general.
  5. the procedure calls preserves the business logics which is apt for the application.
  6. the code re-writing / re-developing effort is minimized.
  7. Enables the usage of the applications used in the distributed environment, not only in the local environment.
  8. RPc provides interoperability between cORba ORb implementations.
  9. a lightweight RPc protocol permits efficient implementations.

Disadvantages of RPc:

  1. context switching increases scheduling costs
  2. RPc is not a standard – it is an idea that can be implemented in many ways
  3. RPc does not solve the most of the distribution creation problems
  4. RPc is only interaction based. this does not offer any flexibility in terms of hardware architecture.
  5. RPc implementations are not yet mature.
  6. it requires the tcP/iP protocol. Other transport protocols are not supported yet.
  7. Not yet proven over wide-area networks.

39. Explain the difference between Rpc and Rmi?

RMi

  1. The remote objects are accessed by the references.
  2. implements object to object implementation among different java objects to implement distributed communication model.
  3. RMi passes the objects as parameters to remote methods.
  4. RMi invokes the remote methods from the objects.

RPc :

  1. The process is through methods / functions.
  2. Proxy server is involved in processing the procedure calls.
  3. calls a procedure remotely like invoking the methods.
  4. The remoteness is not exactly transparent to the client.

40. What is unicast and Multicast Object?

  • The difference between unicast and multicast is that in unicast approach the sender sends the data stream to a single receiver at a time. thus there is one to one communication.
  • In a multicast the sender and the interested receivers communicate. this is one to many communication. this communication can take place between data terminals spread across various LaNs too.

41. What are the basic steps to Write client-service application using Rmi?

  • Assigning the security manager and then obtaining the reference to the service
  • Contacting the RMi registry to obtain the remote object’s reference and invoking its methods
  • Requesting the name for the service
  • invoke the remote method.

42. Explain how Rmi clients contact Remote Rmi servers?

  • the client procedure calls the client stub in the normal way.
  • the client stub builds a message and traps to the kernel.
  • the kernel sends the message to the remote kernel.
  • the remote kernel gives the message to the server stub.
  • the server stub unpacks the parameters and calls the server.
  • the server does the work and returns the result to the stub.
  • the server stub packs it in a message and traps to the kernel.
  • the remote kernel sends the message to the clients kernel.
  • the clients kernel gives the message to the client stub.
  • the stub unpacks the result and returns to the client.

43. What are the Layers On which Rmi implementation is built? Explain them.?

the stub/skeleton Layer: the stub/skeleton layer sits in between application layer and the rest of the RMi system and acts as an interface. this layer transmits the information to remote layer. this transmission is done through the marshalling of streams. these streams performs the object serialization.a stub is a remote object at the client-side. this stub implements all the interfaces which remote object implementation supports.a skeleton is a remote object at the server-side. this stub consists of methods that invokes dispatch calls to the remote implementation of objects.

the Remote Reference Layer: the lower level transport interfaces is dealt by this layer. this layer carries a specific remote reference protocol independent of stub and skeletons.Every remote object is implemented by choosing their individual remote reference subclasses.

the transport Layer: the transport layer sets up the connections to remote address spaces, manages them, monitors the connection liveliness, and listens the incoming calls.

the transport layer maintains the remote object’s table available in the address space, in a table. for incoming calls, the transport layer establishes a connection. it locates the target dispatcher of the remote calls and passes the connection to the dispatcher.

44. Explain the Role Of stub in Rmi.?

the role of the stubs is to marshal and unmarshal the messages that are sent and received on the client or the server side.

45. What is a skeleton in Rmi?

server side stub is referred to as a skeleton.

46. Explain Marshalling and demarshalling?

during communication between two machines through RPc or RMi, parameters are packed into a message and then sent over the network. this packing of parameters into a message is called marshalling.

On the other side these packed parameters are unpacked from the message which is called unmarshalling.

47. What is the Role Of Remote interface in Rmi?

Remote interfaces are defined by extending ,an interface called Remote provided in the java.rmi package. the methods must throw RemoteException. but application specific exceptions may also be thrown.

48. What is Rmi callback Mechanism?

When one service passes an object which is the proxy for another service, the RMi callback mechanism occurs. the methods will be invoked by the recipient in the object it received and be calling back to the calling point. the stub contains the information that is needed to call back to server at the time of the need.

49. What is Object serialization in Rmi?

to marshal and unmarshall the parameters involves the object serialization and does not truncate types.

the methods of local object and their bytecodes are not passed directly in the ObjectOutputstream. at times the name of the class of the objects may be needed that is to be loaded by the receiver if at all the class is not available locally. Just like the names of the classes, the class files themselves will not be serialized. all classes must load during the process of deserialization using the normal mechanisms of class loading.

50. What is data transfer in Rmi Model?

  • data in a file can be transferred by using the method getfilecontents(filename) in the remote interface.
  • RMi supports to transfer data that is available in JdOM data objects.

51. What are Remote callbacks?

in client-server technology / architecture, a server responds to a remote client. a call back is a method invocation from one application (application a) from another application (application b), as a result of action that was performed by the application b earlier. the application a may run on a client and the application may run on a server. to perform the call back mechanism the system that application a runs acts as a server and that of the application b runs acts as a client.

52. Explain the steps to create Rmi-based clients and server?

creation of RMi-based server:

  • create the servant interface and the servant component class
  • to host these servant classes create the RMi server
  • compile the class files and generate the skeletons and idL file
  • start up the server

creation of RMi-based client:

  • create the client class
  • copy the iiOP stubs and compile the client
  • Make sure the server is running and then startup the client

53. Explain the Various methods Of Registering and Gaining access to the Remote Object?

the methods of remote objects are to be invoked by implementing the java.rmi.Remote interface.

methods:

  • bind(): binds the specified name to the remote object. the name parameter of this method should be in an uRL format.
  • unbind(): destroys the binding for a specific name of a remote method in the registry
  • rebind(): binds again the specified name to the remote object. the current binding will be replaced by rebinding.
  • list(): Returns the names of the names that were bound to the registry in an array form. these names are in the form of uRL-formatted string.
  • lookup(): a stub, a reference will be returned for the remote object which is related with a specified name.

54. How to bind an Object to the Registry.?

if an object implements the java.rmi.Remote interface, an object is to be bound to registry context. Each registry context implements the Referenceable interface.

the object factory is implemented by the Registrycontextfactory which converts the registry references into the corresponding registry contexts or remote objects. to construct the registry constructs, the uRL of the registry must be determined. in this way the remote objects will be bounded with registry contexts.

55. What is Registry service for RMI?

the registration of the remote object must be done by the server in order for the client to look it up, is called the RMi Registry. in RMi, the client must contact an RMi registry, so that the server side application will be able to contact the client’s registry which points the client in the direction of the service. the client registers the service with the registry so that it is transparent to even for the server.

Java Remote Method Invocation Questions and Answers Pdf Download

Leave a Reply

Your email address will not be published. Required fields are marked *