Statistics

Total Posts: 34
This Year: 0
This Month: 0
This Week: 0
Comments: 174


RSS 2.0   SocialTwist Tell-a-Friend


Admin

Sign In

Navigation


Recent Posts


On this page....

IIS 6 - Application Pool

Archives

 Full Archives By Category
 2007 Calendar View
<December 2008>
SunMonTueWedThuFriSat
30123456
78910111213
14151617181920
21222324252627
28293031123
45678910

Categories

CDOSYS (1) Classic ASP (10) Command Line (2) Databases (16) Excel (1) HTML (1) IIS (10) Indexing Service (1) Internet Explorer (7) Media Streaming (1) MS.Net (2) SQA (7) SQL Server (16) Windows OS (2)

Blogroll - Fav Blogs


Acknowledgments

DasBlog Theme Design by: Tom Watts
E-mail: Send mail to the author(s)
Theme Image by: dreamLogic

Disclaimer

The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.

Technology Blog

# Wednesday, December 03, 2008
Author: Akash Heranjal

Application Pool is a new feature introduced in IIS 6. An Application Pool can contain one or more applications and allows us to configure a level of isolation between different Web applications. For example, if you want to isolate all the Web applications running in the same computer, you can do this by creating a separate application pool for every Web application and placing them in their corresponding application pool. Because each application pool runs in its own worker process, errors in one application pool will not affect the applications running in other application pools. Deploying applications in application pools is a primary advantage of running IIS 6.0 in worker process isolation mode because you can customize the application pools to achieve the degree of application isolation that you need.


Why is this required?

If you want to isolate all the Web applications running in the same computer, you can do this by creating a separate application pool for every Web application and placing them in their corresponding application pool. Because each application pool runs in its own worker process, errors in one application pool will not affect the applications running in other application pools.

Related Web References:
o http://www.developer.com/net/asp/article.php/2245511
o http://www.windowsnetworking.com/articles_tutorials/Working-Applica...


How to create an Application Pool?

o Open IIS 6 and choose “Application Pools”
o Right click on “Application Pools” and choose “New” and then choose “Application Pool”
o A new window is open asking for the Application Pool details
o Give the name for the new application pool ID, for example “MyPool”
o Choose the radio button “Use existing application pool as template” and choose “DefaultAppPool” from the dropdown list
o Click on “Ok” button to create the Application Pool “MyPool”