What is UniCastRemoteObject and what is its use in RMI?

Answers were Sorted based on User's Feedback



What is UniCastRemoteObject and what is its use in RMI?..

Answer / janet

All remote objects must extend UnicastRemoteObject, which
provides functionality that is needed to make objects
available for remote machines.

Is This Answer Correct ?    44 Yes 13 No

What is UniCastRemoteObject and what is its use in RMI?..

Answer / vatsal doshi

There are many purposes for using a Unicast Remote Object

1. All the basic functionalities of RMI are actualy
implemented in this class. When we extend this class, in our
Remote class, all the RMI code gets inherited and becomes
available in our class

2. UnicastRemoteObject also implements Serializable
interface. So your subclass also automatically implements
Serializable. And thus marshalling is then supported for
your type

3. UnicastRemoteObject also prevents the methods of Object
class from being directly inheritted into the Remote class.
Thereby, preventing the 11 methods of Object class from
being invoked Remotely. methods like hashcode() need
different implementations for Remote invocations.

Is This Answer Correct ?    23 Yes 5 No

What is UniCastRemoteObject and what is its use in RMI?..

Answer / yogesh

If you extends this class, your object will be automatically exported for RMI access.

If your class is already extending another class, or you just don't like extending from UnicastRemoteObject, you can also do the following:

UnicastRemoteObject.exportObject ( this );

Is This Answer Correct ?    2 Yes 0 No

What is UniCastRemoteObject and what is its use in RMI?..

Answer / tayyab ashraf

As unicast remote object contain all core functionality of RMI
so in order to get the features of RMI we should extend this class.

Is This Answer Correct ?    2 Yes 1 No

What is UniCastRemoteObject and what is its use in RMI?..

Answer / sarfaraz sheikh

The use of UnicastRemoteObject in RMI to create an instance
for remote services and provide activation and deactivation.

Is This Answer Correct ?    7 Yes 8 No

What is UniCastRemoteObject and what is its use in RMI?..

Answer / kamalakkanan

remote service

Is This Answer Correct ?    1 Yes 6 No

Post New Answer

More Advanced Java Interview Questions

Which class is the immediate superclass of the menucomponent class?

0 Answers  


what do u mean by java bean??

2 Answers   ADP,


what is meant by JRMP?

0 Answers  


What is the relation between the infobus and rmi?

0 Answers  


can a static method be overridden

12 Answers   SolutionNET,






What are the states associated in the thread?

3 Answers  


Should synchronization primitives be used on bean methods?

0 Answers  


Define aop(assepct oriented programing)?

0 Answers  


diff vector arraylist

4 Answers   Saka Solutions,


What are the benefits of detached objects?

0 Answers  


wahts is mean by dynavalidatorform in struts/

0 Answers   SolutionNET,


If your ui seems to freeze periodically, what might be a likely reason?

0 Answers  


Categories