Hi friends,
Ques : I want to know that how many type of remote object creation mode in .NET. Please explain in brief?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Hemant KumarPosted Mar 26, 2012, 7:57 AM
. SAO (Server Activated Objects) also called as Well-Known call mode.
. CAO (Client Activated Objects)
SAO has two modes "Single Call" and "Singleton". 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.
http://hateinterview.com/dot-net/explain-the-two-different-types-of-remote-object-creation-mode-in-net/4468.html