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
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 gSingle Callh and gSingletonh. 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, 4822👍, 0💬
Popular Posts:
.NET INTERVIEW QUESTIONS - What are types of compatibility in VB6? There are three possible project ...
What is hashing? To hash means to grind up, and that's essentially what hashing is all about. The he...
What is a fish bone diagram ? Dr. Kaoru Ishikawa, invented the fishbone diagram. Therefore, it can b...
What is the value of this expression? +1-2*3/4 -0.5
What is test metrics? Test metrics accomplish in analyzing the current level of maturity in testing ...