application-pool

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

Hello, 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 years ago, I implemented a .NET ORM engine which makes a log of user and the server using the DBMS_APPLICATION_INFO package. Using ...

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 run the app. for the first time after deployment it takes lot of time to load dependent assemblies in memory. But once loaded its lighting f...

Problem with IIS7 and integrated pipeline

Hi, I have a problem with IIS7 and integrated pipeline. Previously I had win xp with IIS 5 and everything worked correctly. I have migrated my application to IIS 7 in Vista I have decided to put the pipeline mode of my application pool to integrated mode (which in theory is better). All things are working properly except one… The prob...

SharePoint List access across Application Pools

I have a requirement where I need to be able to access a list which sits in Central Administration from an Application Page which sits on my Web Front End (WFE). The issue I have is that the Application Pool User for my WFE does not have access to the SharePoint_AdminContent database so I get access denied, they both have their own App P...

Application Pool recycling

1) In check box maximum virtual memory in (megabytes) :1024 2) In check box Maximum used memory in (megabytes) : 786 what is the difference between two settings? ...

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 Network Service, everything runs fine. However, when we configure the IIS Application Pool to run the code under a different Identity, we g...

cycling IIS app pool cause slow first user experience

When i recycle the application pool for my web app via IIS MMC, the first user to request a page within the webapp will experience a really slow response from the site. After that initial request, every page there after is fine. The user could also log off the site, come back later and the speeds are quick. My concern is with the first, ...

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 related quesitons have been asked but I don't want to do this from the command line unless th...

asp.net application pool and garbage collection

Sorry if this is a duplicate, i've read many questions that are either very similar or require roughly the same keywords to describe (but aren't quite the same)... situation: an asp.net application has a connection pool memory leak problem (where connections are not being closed correctly for example)...I need clarity on the following: ...

Overcome compilation(?) pause on *secondary* initial ASP.Net application startup?

After deploying an ASP.Net application to a new server, the first user to hit the app gets a long pause, presumably because the app is performing its initial compilation. However, this pause seems to also also occur after the application has timed out and unloaded itself from memory. The first compilation would be tolerable as it only ...

IIS 7 Applications and asp.net - newbie question

Just getting started on a project to migrate from win 2003 iis6 to win 2008 / IIS7, and after reading the MS documentation and also various articles I am a little confused, as it states a site needs to have one or more applications. However I have setup a new site pointed at my .Net 3.5 directory and it works. This means that .... A...

Application pool restart automaticly if file change in repositery

Why does the application restart automatically when we create a new folder under a web site in IIS 7.0 or Cassini? Is it a config we can change ? What is the impact ? I read this post and the post not answer to my question ...

Check if IIS Application is running without causing it to run

I am writing a web monitor app that gives information about all app pools / apps on my IIS server. I am looking for a way in C# to programmatically check if an IIS application is running without causing it to run if it is not. Here is what I have found... application is running, there are one or more sessions active. all sessions dro...

Enumerating Application Pools in IIS

Hello, I am wondering if there is a way to enumerate the collection of applications pools (not the applications in a given pool - but the pools themselves) on the local IIS server using ASP.net 3.5 without the use of WMI, and if so can someone provide a link or example to how this is done? (I forgot to add the IIS version is 6.0). ...

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 (LocalSystem, NetworkServices or a domain user)? This is on Windows 2003. ...

Will resetting an application pool automatically close all database connections?

I am running IIS6.0. I have the DefaultAppPool running one website. If I reset this application pool would that automatically close all database connections that are being used by the website? hope that makes sense, any help is appreciated. ...

IIS Web pool hang

Hi, I have an application pool set for hang monitoring every 30 seconds, I got this error returned from classic asp. After which no new asp requests were being served according to web logs. I wonder why it took IIS a full 5 minutes to shut the process down, and start a new process for the application pool? Error: File /unabletoproc...

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 outlines which changes to the IIS metabase will trigger either a restart or app pool recycle? I haven't been able to find this yet. ...

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

Will it be disabled if I set the idle time-out to 0? ...

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 to understand who's doing what and where are they doing it... ...