What is App Pool and App Domain? What is the difference
between the two.
Answers were Sorted based on User's Feedback
Answer / nalin bhatia
IIS process is w3wp;
Every application pool in IIS use it's own process;
AppPool1 uses process 3784, AppPool2 uses process 5044
Different applications in Asp.net will use different
AppDomain;
AppTest2 and AppTest2 are in different AppDomain, but in
the same process.
What's the point to use them?
Application pool and AppDomain , both of them can provide
isolations, but use different approches. Application pool
use the process to isolate the applications which works
without .NET. But AppDomain is another isolation methods
provided by .NET.
If your server host thousands of web sites, you wont use
thousands of the application pool to isolate the web sites,
just becuase, too many processes running will kill the os.
However, sometime you need application pool. One of the
advantages for application pool is that you can config the
identity for application pool. Also you have more flexible
options to recyle the application pool. At least right now,
IIS didnt provide explicit options to recyle the appdomain.
Is This Answer Correct ? | 30 Yes | 4 No |
Answer / vinodh.m
An application pool is a group of one or more URLs of
different Web applications and Web sites. Any Web directory
or virtual directory can be assigned to an application pool.
Every application within an application pool shares the same
worker process executable, W3wp.exe, the worker process that
services one application pool is separated from the worker
process that services another [Like starting MS Word and
opening many word documents]. Each separate worker process
provides a process boundary so that when an application is
assigned to one application pool, problems in other
application pools do not affect the application. This
ensures that if a worker process fails, it does not affect
the applications running in other application pools. [i.e]
for Eg., If word document is having issue it should not
logically affect your Excel Sheet isn’t it.
application domain is a mechanism (similar to a process in
an operating system) used to isolate executed software
applications from one another so that they do not affect
each other. [i.e] opening of MS WORD doesn’t affect MS EXCEL
you can open and close both the applications any time since
there is no dependency between the applications. Each
application domain has its own virtual address space which
scopes the resources for the application domain using that
address space.
Is This Answer Correct ? | 15 Yes | 2 No |
Answer / murali
An application pool is a container to execute one or more
applications/virtual directories, which means for a single
application pool, one or more than one websites can be
mapped. In a application pool, more than one worker
processor can exists. if each website in application pool is
mapped to individual worker process, and if any issues
occurs in one worker process, only that worker process will
stored and restart, the other process will still run.
Application domain is mapped to individual worker process,
that is w3wp.exe. but, there can be more than one
application domain mapped to a single worker process.
Is This Answer Correct ? | 9 Yes | 8 No |
Answer / waleed mohamed
this post on my blog will explain well the app Domain
http://blog.flair-systems.com/2010/05/c-fastfood-what-appdomain.html
and i'll try to make a new post for the app pool
Is This Answer Correct ? | 1 Yes | 4 No |
Answer / suresh
Application pool is created the each and every website.
Application domain is created to one domain purpose.
Is This Answer Correct ? | 18 Yes | 37 No |
How do I create a iis application?
In iis version 6.0 through application pool we can provide different -2 applications for the client.
IIS Default objects in IIS Manager
What is http error 403.14 forbidden?
how we can change a PSD file in a clipart to use in word or power point ?
What is the usage of iis?
How do I edit web config in iis?
How do I reset iis in windows 7?
IIS metabase ?
Exp the role of http.sys in iis?
How does iis work?
How do I start and stop iis?