What are two different types of remote object creation mode in .NET

Q

What are two different types of remote object creation mode in .NET ?

✍: Guest

A

There are two different ways in which object can be created using Remoting :-
ã SAO (Server Activated Objects) also called as Well-Known call mode.
ã CAO (Client Activated Objects)

SAO has two modes gSingle Callh and gSingletonh. With Single Call object the object is created with every method call thus making the object stateless. With Singleton the object is created only once and the object is shared with all clients.
CAO are stateful as compared to SAO. In CAO the creation request is sent from client side. Client holds a proxy to the server object created on server.

2007-10-23, 4607👍, 0💬