What is an application domain?

Answers were Sorted based on User's Feedback



What is an application domain?..

Answer / sudhir sheoran

Application domain is both a container and a boundary which contains code and data.
Like OS have processes as the smallest unit of separation, similarly .NET have app domains.

A process can have multiple app domains but a app domain will be associated with only a single process.

App Domain is relatively cheap to create (compared to a process), and has relatively less overhead to maintain than a process.For these reasons, an AppDomain is a great solution for the ISP who is hosting hundreds of applications. Each application can exist inside an isolated AppDomain, and many of these AppDomains can exist inside of a single process – a cost savings.

They separation concern of applications is resolved by assigning different virtual space to different application.
So even if one application crashes it doesn't effect the other applications.

No two application can directly interact with other application even though in same process. They have to use .net Remoting kind of things to do that.

Is This Answer Correct ?    0 Yes 0 No

What is an application domain?..

Answer / srikanth

Application domain is something that isolates the
application from interupting each other.

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More ASP.NET Interview Questions

How does a web application session work?

0 Answers  


What are tuples?

0 Answers  


What are sql joins?

0 Answers  


Explain the advantages of asp.net.

0 Answers  


How .Net has implemented security for web applications?

1 Answers  






Contrast the use of an abstract base class against an interface?

5 Answers   iLink,


What are the action filters available in asp.net mvc

1 Answers   TCS,


What is the difference between pathparam and queryparam?

0 Answers  


What are the Types of object in asp

0 Answers   BirlaSoft,


Can action method static?

0 Answers  


Which is better union or union all?

0 Answers  


diffrance between stored procedure & function in sql server?

2 Answers  


Categories