What is AppDomain?Explain how it works.
Answers were Sorted based on User's Feedback
Answer / murthy remella
AppDomain a eco system inside the IIS /ASP.NET worker
process, where CLR loads itself and executes the .NET code,
when we try to run a program written in .NET
AppDomain isolates the runtime environment of each
application from the other applications running on a
machine, it improves the application stability.
AppDomain maintains the context and shared resources and
allow all the user requests to use information while
request processing.
| Is This Answer Correct ? | 13 Yes | 0 No |
Answer / murthy remella
Its mandatory to create application domain for running
any .NET code. Its the light weight process in which CLR
will execute the code. AppDomain is built into Framework.
Generally regular application development doesn't require
AppDomain creation, but in some specific scenarios like
loading a component in seperate domain and unloading after
its purpose is served without stopping the entire
application.
ServiceHost Applications (IIS, ASP.NET worker) will handle
creation and management of appDomain in the background
Also, for each virtualdirectory/website one application
domain is created normally, which serves all the incoming
requests.But if you think the load is high and a single
appDomain is scalable then the application can use multiple
appdomains. (http://www.IIS.net for more details)
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / murthy remella
sure, please let me know what specifically you want me to
answer
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / kishore
app domain useful to set security boundries to the all
asp.net applications i.e it does n't interupt other asp.net
applications generally it's built in feature in asp.net
when we create application separate app domain will be
created
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / sarojini
one process having more application domains,when one
application domain throws an error it doesn't reflect the
others.
by using remote call objects we can invoke the methods
on other domains
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / chandu
Thank you Murthy,I need some more clarity for this question
Please anybody have clear idea
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / vijay musmade
app domain is one of the main utility of ASP.net
which is mostly used for .net security for particular domain
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / manjari anand
The common language runtime has been designed to support a
variety of different types of applications, from Web server
applications to applications with a traditional rich
Windows user interface. Each type of application requires a
runtime host to start it. The runtime host loads the
runtime into a process, creates the application domains
within the process, and loads user code into the
application domains.
Operating systems and runtime environments
typically provide some form of isolation between
applications. For example, Windows uses processes to
isolate applications. This isolation is necessary to ensure
that code running in one application cannot adversely
affect other, unrelated applications.
Application domains provide an isolation boundary for
security, reliability, and versioning, and for unloading
assemblies. Application domains are typically created by
runtime hosts.
You can run several application domains in a single process
with the same level of isolation that would exist in
separate processes.The ability to run multiple applications
within a single process dramatically increases server
scalability.
The isolation provided by application domains
has the following benefits:
• Faults in one application cannot affect other
applications. Because type-safe code cannot cause memory
faults, using application domains ensures that code running
in one domain cannot affect other applications in the
process.
• Individual applications can be stopped without
stopping the entire process. Using application domains
enables you to unload the code running in a single
application.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / chnd147
Hi Murthy,
sorry for ur miss understading,I mean i need more
clarity as follows.Please give if possible
Is there any specific reason to create AppDomain or Is it
mandatory to create it for every application?
AppDomain is not a framework feature right?
How to create AppDomain,what is the use and where to use it
| Is This Answer Correct ? | 0 Yes | 1 No |
Explain the namespace classes used in asp.net mvc? : asp.net mvc
can any one explain about 3-tier architecture and how to deploy 3 layers of 3-tier architecture in 3 different servers.plz send me .net code
What are the Types of state management techniques
Is it possible to apply themes to an asp.net application? If yes, then how?
Define static member?
What is difference between asp state management and asp.net state management?
What is Master Page in Asp.net?
How to find out what version of asp.net I am using on my machine?
What is the use of data set in asp.net?
To load your generated dataset with data which method do you invoke?
What is Difference between Application object and Session Object
Why web api is better than wcf?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)