What is UniCastRemoteObject and what is its use in RMI?
Answer Posted / 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 |
Post New Answer View All Answers
Can I run seam with jdk 1.4 and earlier?
Which component handles cluster communication in jboss?
what is an isolation level?
AS a developer will u create a data source in connection pool? If so how will u do that, how to access the object from connection pool using IRAD tool?
What are the different approaches to represent an inheritance hierarchy?
Why do I get a duplicate name error when loading a jar file?
Describe responsibilities of Activator?
How messaging services are done, before release of JMS?
Can I have an action without a form?
What is scalable, portability in the view of J2EE?
What is the difference between the string and stringbuffer classes?
Are we allowed to change the transaction isolation property in middle of a transaction?
What is clustering? What are the different algorithms used for clustering?
What are the different methods of identifying an object?
What is aop(assepct oriented programing)?