What is AppDomain?Explain how it works.

Answers were Sorted based on User's Feedback



What is AppDomain?Explain how it works...

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

What is AppDomain?Explain how it works...

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

What is AppDomain?Explain how it works...

Answer / murthy remella

sure, please let me know what specifically you want me to
answer

Is This Answer Correct ?    2 Yes 0 No

What is AppDomain?Explain how it works...

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

What is AppDomain?Explain how it works...

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

What is AppDomain?Explain how it works...

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

What is AppDomain?Explain how it works...

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

What is AppDomain?Explain how it works...

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

What is AppDomain?Explain how it works...

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

Post New Answer

More ASP.NET Interview Questions

What is use of Master Page in ASP.NET web pages?

0 Answers   Sans Pareil IT Services,


What is asp.net futures?

0 Answers  


What is the file extension of web service?

0 Answers  


What are main return types supported in Web API?

0 Answers  


How to implement globalization and localization in the use interface in .net.

0 Answers  






if we establish the cinnection with connection string tag in web.config file,can i go for encrypt and decrypt with that?

1 Answers  


What is the concepts of globalization and localization in .net?

0 Answers  


What are the disadvantages of view state?

0 Answers  


How to create events for a control?

0 Answers  


Hi, I am developing an application (quiz engine) using C# in Dot net. My problem is I am designing the selction option using radio button. So, I want to retrive the data from the database to the radiobutton option. And also please tell me the how to compare the correct answer option with Answer selected by the users. If any body knows or have done this before please Help me out. My mail id is get_rome@yahoo.co.in. Table format: Question Id Queston Option1 Option 2 Option 3 Option 4 Correct answer 1 What is ur name? My name is ….. My name …. My name …. My name …. My name is tom

4 Answers  


Hey I am using asp.net mvc architecture. I creating one dropdownlist using <select id="State" name="State"></select> this is dynamic list.Its displaying properly. But in time of Edit.If i load a page dropdownlist is not displaying the item which is stored in table.

1 Answers  


Can asp.net work on an nt server?

0 Answers  


Categories