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
0
votes
1 answer

App pool memory usage is not coming down in IIS 6

I have a website with a simple page. On click of a button we execute a MDX query which returns around 200,000 rows with 20 columns. I use following code to execute MDX query using Microsoft.AnalysisServices.AdomdClient library (version is 10.0.0.0…
SharpCoder
  • 18,279
  • 43
  • 153
  • 249
0
votes
0 answers

Localhost testing of multiple sites using live databases - separating out the `application` object

Our application uses a config file to store connection strings. For live this is just 2 lines. For localhost we have over 300 lines, for 150+ servers, and every time we want to change servers we have to comment out the currently active one and…
ClarkeyBoy
  • 4,934
  • 12
  • 49
  • 64
0
votes
1 answer

IIS Web Garden - File Access / Write from different processes

I host my web application on IIS. The pool that application resides in has 4 worker processes. (Web Garden) To make a test, for each requst to aspx page, I write the Process Id of Executing Process into log.net file log. When I open the file log, I…
Ahmet Altun
  • 3,910
  • 9
  • 39
  • 64
0
votes
2 answers

Select to recycle worker processes after a specific period of inactivity

Can anyone confirm that this statement "Select to recycle worker processes after a specific period of inactivity" in this Microsoft help file is wrong and should in fact not have the "of inactivity" at the end of it?
Guy
  • 65,082
  • 97
  • 254
  • 325
0
votes
1 answer

App-pool dll and GAC

We have about 80 apps that would be on the same server. Are all very small sites that use the same custom built app, aspnet webform, c#, compiled. Each app has a copy of the app dll in its own bin dir, plus some open source third party libraries…
manudea
  • 371
  • 2
  • 15
0
votes
1 answer

Redirct on Application_End or Application_Error event

I am unable to use Redirect or Response.Write in my application when either the Application_End or Application_Error events occur. protected void Application_Error(object sender, EventArgs e) { string strError; strError =…
Mohsin Alam
  • 90
  • 1
  • 1
  • 8
0
votes
1 answer

Find Application which caused Application pool to crash (IIS 7)

I have an application pool been shared by multiple applications (not website!), looking through the event viewer, I've found an entry which states the cause for the crash. In the event, it has the following field. Application ID:…
Jack
  • 2,600
  • 23
  • 29
0
votes
1 answer

Orchard 324 no data sent error with custom module only on web server

I just started having a very strange issue with my custom module that has not started happening until last night. Basically when I try to request the custom view I created for the module the first couple of pages display fine and then all of a…
0
votes
1 answer

How to run Application Pool in 64bit mode?

How can I run an Application Pool in 64bit mode on Windows Server 2008 R2 x64 with IIS7 Installed ?
Zim3r
  • 580
  • 2
  • 14
  • 36
0
votes
1 answer

Webservices in asp.net and app pool recycling

I'm having a hard time phrasing this question in searches to get relevant answer so I'm trying here. I have a long task, a data sync between two applications, one of them being an asp.net website. I wanted to have a separate application that would…
user204588
  • 1,613
  • 4
  • 31
  • 50
0
votes
1 answer

Log Every File Access Attempt on a System and Sort it by User/System Account

I have a strange issue where I need to see why my application pool is crashing due to a permissions issue and no logs are helpful. Is there any way to log every file access attempt on a system and sort it by the user/system account that tried to…
Alexandru
  • 12,264
  • 17
  • 113
  • 208
0
votes
1 answer

IIS Process Recycling

I have read the MSDN article (link) which says something about the IIS process recycling and it turns out that The new process is started before the old worker process stops, and requests are then directed to the new process. But, when I read next…
AgentFire
  • 8,944
  • 8
  • 43
  • 90
0
votes
1 answer

What application pool does the Bin folder use?

We have a classic asp website which requires a .NET exporting component. We have installed a part of the plugin to highcharts/HighchartsExport.aspx (this is the file we call to run it) and the required dlls into the /Bin folder as…
David Meagor
  • 117
  • 2
  • 11
0
votes
2 answers

Setting AppPool Idle Timeout with PowerShell

How do you set an IIS6 app pool's idle timeout with powershell? All I am seeing from my searches is how to set the app pool recycle time which isn't quite the same. This is what is turning up, but I don't think it's what I am looking…
TheWolf
  • 1,675
  • 4
  • 22
  • 34
0
votes
1 answer

asp processorThreadMax equivalent in asp.net

Is there any equivalent of processorThreadMax setting for asp in asp.net? I have web app which works under load. I've heard that applicationPool in iis7 is limited to 25 threads. I would like to make it bigger. I am using asp.net. How can I achieve…
rideronthestorm
  • 727
  • 1
  • 13
  • 32