top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What are different types of Remote Object Creation methods available in .Net?

+2 votes
370 views
What are different types of Remote Object Creation methods available in .Net?
posted Aug 14, 2014 by Khusboo

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote
 
Best answer

SAO Server Activated Object (call mode): 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.

answer Nov 12, 2014 by Manikandan J
Similar Questions
+4 votes

Also want to know where and how each one is used?

+2 votes

When do we implement which of these?

+3 votes

How do we retrieve the customized properties of a .NET application from XML .config file? Can we automate this process?

...