What is .Net Remoting? - Remoting.NET

What is .Net Remoting?

.Net Remoting enables communication between applications across separate domains or networks. .Net objects are exposed to remote processes to have interprocess communication. With remoting, we can use TCP or HTTP communications protocols on any port. We can use text or binary formatting. .Net Remoting supports server activated (single call and singleton) as well as client activated objects.
Describe the .Net Remoting Architecture - Remoting.NET
.Net Remoing allows communication between server and client objects...
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...
Post your comment