Answer Posted / 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 |
Post New Answer View All Answers
Explain about Application and Session Events ?
What is the full meaning of asp.net?
3. What goals do you have in your career?
A Web Service Can Only Be Written In .net. Is it True??
What is the difference between pathparam and queryparam?
We Only Know The Total Number Of Feet In The Farmyard. Write A Program that will compute the total number of rabbits and chickens in the farmyard. Assume number of feet in the farmyard are 40. how many rabbits and chickens are?
What are Caching techniques in .NET
How can you pass multiple complex types in Web API?
what are the security certificates used in webservices?
How many web.config files can I have in an application?
Explain Optimization technique description?
What is application and session in asp.net?
What is the difference between session.abandon() vs clear()?
Can one dll file contains the compiled code of more than one .net language?
To wrap up a call to a Web service the standard used is..?