ASP.NET - Different types of remote object creation mode in .NET

Explain the two different types of remote object creation mode in .NET.

Ways in which object can be created using Remoting: -

SAO (Server Activated Object): lasts the lifetime of the server. They are activated as SingleCall/Singleton objects. It makes objects stateless. A SingleCall object gets created for each request by client and A Singleton object is created once on the server and is shared by all the clients.

CAO (Client Activated Objects): CAO creates stateful objects. The object creation request is based on the request by client side. Therefore, the lifetime is based on client and not server. Single instance of object is created for every call.
ASP.NET - Explain Singleton architecture of Remoting.
Answer for the question - Explain Singleton architecture of Remoting....
ASP.NET - How to specify remoting parameters using config files?
How to specify remoting parameters using config files - The remoting parameters can be specified through both programming and in config files....
Post your comment