Distributed Object using RMI-IIOP

How are parameters passed to a method of a distributed object using RMI-IIOP?

Questions by supari   answers by supari

Showing Answers 1 - 9 of 9 Answers

The parameters which are passed to remote methods will be a copy of the actual parameter objects. The basic rule is that the parameters should be Serializable or primitives. The remote JVM will get an exact copy of the objects being passed as parameters from the client JVM.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions