I want to recycle the application pool through my application.
Previously I was storing the application pool name in my database and using that to recycle. But It happened in the past that we moved apps from one app pool to another and sometimes we forget to update the app pool name in the database.
So I am thinking to get the app pool name through the application and use that for recycling.
In the Connections pane, expand the server name, and then click Application Pools. In the Actions pane, click Add Application Pool.... In the Add Application Pool dialog box, enter the name of the application pool in the Name: box, in the . NET Framework version: drop-down list select the .
Expand the IIS server. Choose Application Pool. On the right pane, click Add Application Pool or right-click the middle pane and choose Add Application Pool. When the Add Application Pool window appears, type the name of the application pool on the Namefield (e.g. OSCE).
Modified version of @Razon answer :)
public static string GetCurrentApplicationPoolName()
{
ServerManager manager = new ServerManager();
string DefaultSiteName = System.Web.Hosting.HostingEnvironment.ApplicationHost.GetSiteName();
Site defaultSite = manager.Sites[DefaultSiteName];
string appVirtualPath = HttpRuntime.AppDomainAppVirtualPath;
string appPoolName = string.Empty;
foreach (Application app in defaultSite.Applications)
{
string appPath = app.Path;
if (appPath == appVirtualPath)
{
appPoolName = app.ApplicationPoolName;
}
}
return appPoolName;
}
In many cases it might be enough to just read the name of the application pool from the environment variable:
var apppool = System.Environment.GetEnvironmentVariable(
"APP_POOL_ID", EnvironmentVariableTarget.Process);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With