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
What are the Types of state management techniques
If iam developing an application that must accomodate multiple security levels though secure login and my asp.net web appplication is spanned across three web-servers (using round-robbin load balancing) what would be the best approach to maintain login-in state for the users?
Where is asp.net session stored?
What is the use of response redirect in asp.net?
Explain the advantages of passport authentication.
Explain what does wsdl stand for?
What is viewstate? In which event of the page life cycle, is the viewstate available?
What is Cookies Less Session?
What is server side session management?
How can we prevent browser from caching an aspx page?
code for "For every 5days system has to create 1text file with the corresponding date and it has to store in c-drive" by using web applications
Is there any limit for query string? Means what is the maximum size?
What is base class of button control in .net?
Which object encapsulates state or data of a user?
What is the use of web.config and machine.config files?