Describe the type of remotable objects in .Net Remoting - Remoting.NET

Describe the type of remotable objects in .Net Remoting.

- Marshal-by-value-objects - When client calls a method on marshal-by-value-object, the remoting system creates a copy of this object and passes the copy to the client application domain. The copy hence received can handle any method call in client domain. Using Marshal-by-value-object reduces resource consuming trip across network.
- Marshal-by-reference-object - When client calls a method on Marshal by reference object, the remoting system create proxy object in the caller application that contains the reference of all method and properties of the object.
What are the types of activation modes in .Net remoting? - Remoting.NET
.NET Remoting - Server Activation Mode: In this mode, objects are created on the server when we call a method in the server class and not when we create instance using new...
Post your comment