Describe the .Net Remoting Architecture - Remoting.NET

Describe the .Net Remoting Architecture.

.Net Remoting allows communication between server and client objects. To facilitate this, when new instance of remote object is created in the client application, the client receives reference (called proxy) to the server object. This proxy object contains references to all the methods and properties of the server object. When the client object calls any method (the call actually on proxy object), which resolves the references and invokes server object, receives the result and pass on to the client application.
What are the remotable and non-remotable objects in .Net Remoting? - Remoting.NET
.Net Remoting - The remotable objects are the objects which can be distributed accross domains, can be used with domain...
Describe the type of remotable objects in .Net Remoting - Remoting.NET
.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...
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