what are two differnt types of remote objects creation mode in .net?
The two different types of remote objects creation are Server Activated Object mode Client activated Object mode Server Activated object is also called as “Call mode”.In this type of creation we have two differnt modes ofcreating object.”Single Call” and “Singleton”. In single Call mode object is created for every method call hence it is stateless.In Singleton mode object is created only once and it is shared to all clients. Client activated objects are statefull.In CAO the creation request is sent from clientside. Client holds a proxy to the server object created on server.