Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What are two different types of remote object creation mode in .NET ?
.NET INTERVIEW QUESTIONS - What are two different types of remote object creation mode in .NET ?
✍: Guest
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 “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.
2009-08-11, 4196👍, 0💬
Popular Posts:
Jack developed a program by using a Map container to hold key/value pairs. He wanted to make a chang...
What will be printed as the result of the operation below: main() { int x=10, y=15; x = x++; y = ++y...
Why does malloc(0) return valid memory address? What's the use? malloc(0) does not return a non-NULL...
Can Two Forms Be Nested? - XHTML 1.0 Tutorials - Understanding Forms and Input Fields Can two forms ...
How To Use "IF" Statements on Multiple Conditions? - Oracle DBA FAQ - Understanding PL/SQL Language ...