Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

20
votes
1answer
7k views

How to disable the application pool idle time-out in IIS7?

Will it be disabled if I set the idle time-out to 0?
16
votes
5answers
21k views

What is the difference between DefaultAppPool and Classic .NET AppPool in IIS7?

I have a problem with timeouts in IIS. In the web.config the session timeout was set to 60 minutes but after 20 minutes the session ends. This problem only occurs in IIS7 and not in IIS5. After ...
14
votes
5answers
12k views

What causes an application pool in IIS to recycle?

I have been searching for info on this to no avail. The context of why i need this is another question I asked here. More specifically, does creating/updating/deleting files in App_Data cause a pool ...
13
votes
3answers
5k views

How to keep ASP.NET assemblies in AppDomain alive?

Scenario: I've an n-Tier enterprise ASP.NET application deployed using Web Deployment Projects. All tiers produce independent assemblies that is consumed by the ASP.NET application. Problem: When I ...
10
votes
4answers
1k views

When programatically creating a new IIS web site, how can I add it to an existing application pool?

I have successfully automated the process of creating a new IIS website, however the code I've written doesn't care about application pools, it just gets added to DefaultAppPool. However I'd like to ...
10
votes
4answers
1k views

ASP.NET restarts when a folder is created, renamed or deleted

UPDATE -- process to replicate issue: 1) Create a website project at c:\projects\restart-demo 2) Add default web.config and a dummy aspx page test.aspx 3) Map IIS to point to the root folder ...
9
votes
6answers
264 views

How are people solving app pool recycle issues on deployment with large apps?

Currently after a build/deployment of our app (58 projects, large asp.net MVC 3 front end) takes ~15-20secs to load as it goes through the whole 'recycling the app pool' (release configuration). We ...
9
votes
2answers
9k views

IIS 6.0 Application Pool crash

Have a lot of troubles on production server. Some routing cause crashing of Application Pool with event id 1011: Event Type: Warning Event Source: W3SVC Event Category: None Event ID: 1011 ...
8
votes
2answers
901 views

How to tell why an IIS application pool is recycled

Background: I've deployed an ASP.NET MVC 3 app that works on my machine to a shared hosting provider and am discovering some problems that appear to be related to the application pool being recycled. ...
8
votes
2answers
1k views

PowerShell: How do I set the .NET Framework Version when using New-WebAppPool?

I'm looking to see how I can use the IIS PowerShell Cmdlet New-WebAppPool to specify the version of the .NET Framework to use. Currently, it defaults to v2.0, however I am using MVC, and this will ...
8
votes
5answers
6k views

IIS Application pool PID

is anyone familiar with a way to get the Application pool that is associated with a process ID ? I am using Win32_Process to query the W3WP services and return the PID now I am trying to get the app ...
8
votes
2answers
5k views

IIS App Pools - Stop/Start vs Recycle

I've noticed that on one of my production web apps, when I manually recycle an app pool, the recycled worker process can take upwards of 60+ seconds to actually be completely destroyed, based on ...
8
votes
6answers
16k views

Change .NET Framework version of application pool to 3.5?

I've installed .NET Framework 3.5 SP1 on web server (Server 2008 Enterprise), so running IIS 7.0. I want to change the version of .NET Framework used by an existing site. So I right-click on ...
7
votes
1answer
53 views

Is giving each of my customers a dedicated database and app pool scaleable?

Our team is currently brainstorming a product idea that's been on the tip of our tongues for a couple of years now. It'll most probably be an ASP.NET MVC web application hosted on the WISC stack ...
6
votes
2answers
2k views

Set Application Pool for package using MSDeploy

I am deploying a website using MSDeploy so using something like the below code. "%ProgramFiles%\IIS\Microsoft Web Deploy\msdeploy.exe" -verb:sync -source:package=WebAppServer.zip ...
5
votes
1answer
164 views

IIS7 Application Pool crash when reading cookies

This one is a real challenge: I've set IIS7.5 on my computer and started to develop a website. Each night I'm backing it up on my web server, win 2008r2 sp1 (all updates). It works flawlessly. Yet, ...
5
votes
4answers
291 views

How do I crash the App Pool?

Our ASP.NET 2 web application handles exceptions very elegantly. We catch exceptions in Global ASAX in Application_Error. From there we log the exception and we show a friendly message to the user. ...
5
votes
2answers
2k views

Drawback to creating a separate IIS application pool for each website / application

Currently, on our production IIS web farm, we host about 15 applications in a single App Pool (Default App Pool). There are two websites and about 13 virtual directories. A colleague has recommended ...
5
votes
2answers
1k views

IIS, multiple CPU cores, application pools and worker processes - best configuration for a single site?

We use Kentico CMS and I've exchanged emails with them about a web garden deployment. We have a single site running on a server with 8 cpu cores. In line with Kentico's advice, we have not altered ...
5
votes
4answers
5k views

RSACryptoServiceProvider CryptographicException System Cannot Find the File Specified under ASP.NET

I have an application which is making use of the RSACryptoServiceProvider to decrypt some data using a known private key (stored in a variable). When the IIS Application Pool is configured to use ...
4
votes
2answers
387 views

Single sign-on not working correctly using different application pools?

I have found out by creating 2 new websites under IIS 7 that single sign-on authentication doesn't work when run in different application pools. When i move the applications into the same pool i can ...
4
votes
1answer
505 views

Determine the last time an Application Pool recycled

I'm writing a .NET service that monitors application pools. based on specific triggers I'm restarting them. However, I do not want to restart them if the trigger occurred before they were recycled ...
4
votes
2answers
4k views

When does IIS recycle the worker process?

When I setup an application pool for my web app in IIS 6 it defaults the worker process to recycle in 1740 minutes (29 hours). Does this recycle happen even if there is activity on the web site or ...
4
votes
3answers
3k views

Why Even Recycle an Application Pool?

Maybe someone can shed some light on this simple question: I have a .NET web application that has been thoroughly vetted. It loads a cache per appdomain (process) whenever one starts and can not ...
3
votes
1answer
51 views

Can someone explain the Application Pool and it Worker Process to me?

I was reading this. I understand that application pool: Can seperate the process so one work process fail won't affect the other application in other application pool. from the page above ...
3
votes
1answer
103 views

Difference between an application domain and an application pool?

What is difference between application domain and application pool? I have read many articles regarding these two terminology. but still unable to get proper understanding about them. Please ...
3
votes
1answer
161 views

How do I control the AppPool used for deploy through VS & MSDeploy settings

When I build a deploy package for my webapp the package contains an archive.xml file that contains the following: <createApp applicationPool="" MSDeploy.applicationPool="1" ...
3
votes
2answers
173 views

Detecting when an ASP.NET application recycles

I'm trying to detect when an ASP.NET application is recycling due to either the web.config file being modified or the IIS application pool being manually recycled. Initially I thought ASP.NET's ...
3
votes
1answer
230 views

IIS6 App Pool state

I was wondering if there is a way to capture the state of an IIS6 App Pool using DirectoryEntry in C#? I have seen people use AppPoolState for IIS7 but is there an equivalent that will work for IIS6? ...
3
votes
2answers
172 views

Replacing a DLL while AppDomain is already loaded in ASP.NET

What happens if a dll is already loaded by w3wp.exe and we replace it? Of course we can replace a dll since asp.net uses a cached version of Bin folder DLLs, but I want to know if upon replacing a ...
3
votes
2answers
239 views

Appfabric caching and recycling of application pool

Where is the appfabric cache stored in memory? We have a web site that uses appfabric cache. Appfabric cache is set up with high availability, enterprise edition of windows 2008 and secondary cache. ...
3
votes
2answers
344 views

ASP.NET Application Pool Recycling Issue

I have a Web Project setup that has both my WebForms and a WCF service. I am having an issue where every so often my application seems to recycle and i lose all singleton objects and session values. ...
3
votes
1answer
331 views

How to get a list of all the ASP.NET running worker process and its associated application pools?

I'm in a need to get a list of all the ASP.NET running worker process and its associated application pools and process ID. Is there a way to do this pragmatically (C#) or a powershell script?
3
votes
1answer
2k views

IIS errors since upgrading to dot net 4

Back in October we upgraded one of our sites (on IIS 6) from .net 3.5 to .net 4.0. Since then we have been getting the following warning and error pretty much everyday: Warning: ISAPI ...
3
votes
3answers
2k views

Create an application pool that uses .NET 4.0

I use the following code to create a app pool: var metabasePath = string.Format(@"IIS://{0}/W3SVC/AppPools", serverName); DirectoryEntry newpool; DirectoryEntry apppools = new ...
3
votes
2answers
603 views

What happens to a transaction when App Pool recycles or the worker process is terminated forcefully?

The architecture of the application is straight forward. There is a web application which maintain account holder data. This data is processed and the status of account holders is updated based on ...
3
votes
4answers
511 views

How can you speed up the restart of an ASP.NET application?

What can I do to ensure that when an application/app pool restart is triggered, that the application comes back online as fast as possible? Better yet, is there a way to prevent the application ...
3
votes
2answers
408 views

Does recycling the ASP.NET application kick users out?

We have a problem where the solution seems to be to recycle the app pool for a particular site (a CMS issue we have little control of, I won't go into it here). My question is that while this seems ...
3
votes
4answers
1k views

Get Application Pool Uptime in c#

Is there a way I can determine how long an application pool (in IIS7) has been up (time since started, or last restart) in c#?
3
votes
1answer
1k views

What's the relation between classic asp and a IIS application pool?

Does asp run in the IIS application pool for which the website is configured? Or is the application pool only for asp.NET applications. How do those two relate to each other, what do i need to know ...
3
votes
1answer
311 views

Will a Change to the IIS Home Directory Path Trigger a Restart?

In IIS (6.0 specifically), under the Home Directory tab, if I change the local path, will this cause either IIS to restart or the application pool to recycle? Related, is there a reference that ...
3
votes
2answers
1k views

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 ...
3
votes
3answers
1k views

How to trace the connection pool in a Java Web application - DBMS_APPLICATION_INFO

I need improve the traceability in a Web Application that usually run on fixed db user. The DBA should have a fast access for the information about the heavy users that are degrading the database. 5 ...
3
votes
3answers
4k views

Recycling IIS application pool using PowerShell: “Exception calling Recycle”

It looks like a recent windows update has broken some functionality I was using to recycle IIS6 application pools, as this has been working for months up to today. Exception calling "Recycle" : ...
2
votes
1answer
41 views

w3wp.exe exceeding max threads

we have requirement to handle 10000 concurrent user. Let me explain the system. Machine has two processors. ProcessModel in machine.config is set as autoconfig = true. so that makes maxWorkerThreads ...
2
votes
4answers
64 views

ISessionFactory recreates after app pool recycles

My shared hosting provider set up IIS recycle app pool every 3 minutes for idle. So my session factory often recreates (at application startup). As I have about 70-100 entities it takes about 2-5 ...
2
votes
1answer
50 views

Identifying the name of the application pool from a request

In .net, in a webservice (or website) is there an easy way of getting the name of the application pool that the service is running in, from a HttpRequest or the HttpContext?
2
votes
1answer
192 views

How to change IIS application pool from x64 to x86

I am afraid to see the error Could not load file or assembly 'Interop.hMailServer' or one of its dependencies. Access is denied. while running a web application. The problem is I am running 32 bit web ...
2
votes
2answers
208 views

Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool

I am fairly new in asp.net development, so you can say that I have developed a poorly coded application that is giving me this error. Timeout expired. The timeout period elapsed prior to obtaining a ...
2
votes
2answers
158 views

NServiceBus - Type was not registered in the serializer - Fix?

We are using NServiceBus in a web application and each time we deploy our code to production, we have to delete the Temporary Files in the folder: ...

1 2 3 4 5