< 1 2   Sort: Rank

What are two different types of remote object creation mode in .NET
What are two different types of remote object creation mode in .NET ? 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 gSing...
2007-10-23, 4615👍, 0💬

Which class does the remote object has to inherit
Which class does the remote object has to inherit ? All remote objects should inherit from System.MarshalbyRefObject.
2007-10-23, 5078👍, 0💬

What is .NET Remoting
What is .NET Remoting ? .NET remoting is replacement of DCOM. Using .NET remoting you can make remote object calls which lie in different Application Domains. As the remote objects run in different process client calling the remote object can not call it directly. So the client uses a proxy which lo...
2007-10-23, 4467👍, 0💬

What is an application domain
What is an application domain? Previously “PROCESS” where used as security boundaries. One process has its own virtual memory and does not over lap the other process virtual memory; due to this one process can not crash the other process. So any problem or error in one process does not affect the ot...
2007-10-23, 4710👍, 0💬

< 1 2   Sort: Rank