Questions tagged [application-pool]

Application pools allow you to isolate your applications from one another, even if they are running on the same server.

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.

882 questions
4
votes
0 answers

IIS 7 Application Pool Private Memory Usage

For IIS 7, Help for Recycling Conditions for Application Pool says that Private Memory Usage is ...privately allocated system physical memory ... (The property is named Maximum Used Memory in IIS 6.) And, Event Log entry when application pool…
lockedscope
  • 965
  • 17
  • 45
4
votes
0 answers

Is ApplicationInitialization sufficient alone to replace PreLoadEnabled?

IIS 8.0 onwards, There are two properties, PreLoadEnabled which fakes a request to specified page to start web application. ApplicationInitialization module, initializes and fakes request in case of app pool recycle or crash. Now if I setup…
Akash Kava
  • 39,066
  • 20
  • 121
  • 167
4
votes
2 answers

Is it possible to tell IIS 7 to process the request queue in parallel?

Currently we are developing an ASMX, ASP 2.0, IIS 7 web service that does some calculations (and return a dynamically generated document) and will take approx. 60 seconds to run. Since whe have a big machine with multiple cores and lots of RAM, I…
Uwe Keim
  • 39,551
  • 56
  • 175
  • 291
4
votes
1 answer

Version Information on ASP.NET Server Error Page

I have a ASP.NET MVC5 Web Application configured to run on .NET Framework version 4.5.1. However, I notice that when I get an application runtime exception of some sort, the version information displayed at the bottom of the yellow server error page…
kspearrin
  • 10,238
  • 9
  • 53
  • 82
4
votes
1 answer

trying to give permissions to specific app pool identity in IIS 7.5 - "object cannot be found"

Usually, I give access rights to folder based on the app pool identity, in the format of: IIS AppPool\[app_pool_name] On this particular new server, when I try to edit the security settings of a folder, and add that particular user entry, I am…
4
votes
1 answer

What permissions/policies are needed to support loadUserProfile=true for new application pools?

Something happened on my development workstation (Windows 8.1) in the last few weeks which require me to either run my App Pools with the "Load User Profile" setting at False or not run with the identity set to ApplicationPoolIdentity. If I were…
Chris Simmons
  • 6,924
  • 5
  • 31
  • 47
4
votes
2 answers

Set default app pool recycling via command line

I'm trying to execute the following command at the start of an Azure web role to set a specific time in which the app pool will be recycled: %windir%\system32\inetsrv\appcmd set config -section:applicationPools…
Nick Olsen
  • 6,299
  • 11
  • 53
  • 75
4
votes
2 answers

Identify the w3wp System.Diagnostics.Process for a given application pool

I got few web sites running on my server. I have a "diagnostic" page in an application that shows the amount of memory for the current process (very useful). Now this app is 'linked' to another app, and I want my diagnostic page to be able to…
Mose
  • 1,781
  • 3
  • 16
  • 35
4
votes
2 answers

IIS Error - It is not possible to run two different versions of ASP.NET

I'm getting this error thrown repeatedly on my IIS 6.0 server: It is not possible to run two different versions of ASP.NET in the same IIS process. Please use the IIS Administration Tool to reconfigure your server to run the application in a…
mint
  • 3,341
  • 11
  • 38
  • 55
4
votes
2 answers

wix installer / Create web-site and assign the new or exisiting web app pool

i try create a new web-site using wix installation. it's ok there is no problem but i cannot assign a new or existing web app pool to new web-site. iis:website tag does not contains WebAppPool attribute. How can i assign web app pool to web-site.…
user1928388
  • 203
  • 2
  • 4
  • 10
4
votes
1 answer

Application pool identity in IIS and Integrated security to SQL Server

If I have an ASP.NET web app using impersonation and a SQL Server connectionstring with Integrated Security = true, does the identity of the IIS application pool of the app play any role? Does the identity need to be set to some specific user…
Tony_Henrich
  • 42,411
  • 75
  • 239
  • 374
4
votes
2 answers

How can I restart Application Pool's from a website without having setting app pool identity to local system?

I have an application in .Net that does various admin/config for other applications. I need to be able to stop and start the app pool. I've achieved this, but only if I run the app pool as local system (which is generally accepted as a bad…
Mr Shoubs
  • 14,629
  • 17
  • 68
  • 107
4
votes
2 answers

Can I set application pool in webconfig?

I use IIS 7.0 and I want to know how if I can set Appliacation pool in web config file.
cagin
  • 5,772
  • 14
  • 74
  • 130
4
votes
0 answers

Recycling app pool when publishing WCF service

I've developed a WCF web service that contains a dependency on an unmanaged DLL. When I attempt to publish the Web application to a running server (either local or remote) via Visual Studio 2010's One-Click Web Deploy, the deletion of the existing…
4
votes
2 answers

Is it possible to start / stop an application pool or website in IIS programatically?

I'm trying to find a way to stop, start, restart/recycle websites and application pools from within a web interface on the same server. Ideally this would be something I could do with .NET without having to execute shell commands. (I see other…
Dave Forgac
  • 3,146
  • 7
  • 39
  • 54