0

下午所有,

我需要创建一个基本上列出我公司内部网站的网页。我基本上需要检查一个状态屏幕,该屏幕显示 Web 应用程序是否已启动并正在运行,或者它是否已失败。我还需要对与之关联的数据库实例执行相同的操作。

我正在寻找一些信息来帮助我在我的 ASP.net 2010 站点中编写一些 VB 代码,这些代码将为我完成对每个网站的检查。

我不是 100% 确定如何完成这项任务,但我认为我能够 Ping 应用程序名称或它所在的网络框?

我一直在查看以下站点和代码示例以获得一些灵感,但我似乎没有进一步的进展。

有人可以建议最好的前进方式并提出一些可以进一步帮助我的建议吗?

提前谢谢了。贝蒂

4

1 回答 1

0

我看到你使用了这项技术。网络微软。而且我认为您的网站和应用程序是使用“IIS”托管的?

您应该能够使用“ DirectoryEntry ”类及其多个属性。您可以像这样,检查托管在“ISS”上的网站或 Web 应用程序的状态,并检查应用程序池的状态。

要使用的命名空间:(在C#ASPSystem.DirectoryServices上可用)

有关“DirectoryEntry”及其属性的更多信息:DirectoryEntry Info

像这样的东西:

//Get the webSite ID
public static int GetWebsiteID(string websiteName)
{
     string machineName = System.Environment.GetEnvironmentVariable("COMPUTERNAME");
     DirectoryEntry w3svc = new DirectoryEntry("IIS://"+machineName+"/w3svc");
     int id = 1;
     foreach(DirectoryEntry de in w3svc.Children)
     {
          if(de.SchemaClassName == "IIsWebServer" && de.Properties["ServerComment"][0].ToString() == websiteName)
           {
                id = int.Parse(de.Name);
           }

     }
     return id;
}

//Check statut of webSite
public void checkStatutWebSite()
{
     DirectoryEntry myWebSite = new DirectoryEntry(string.Format("IIS://" + machineName + "/w3svc/{0}/Root", GetWebsiteID("webSiteName")));
     ServerState state = (ServerState)Enum.Parse(typeof(ServerState), myWebSite.Properties["ServerState"].Value.ToString())
     if (state == ServerState.Stopped || state == ServerState.Paused)
     {
         //site is stopped
     }

}

public enum ServerState
{
    Unknown = 0,
    Starting = 1,
    Started = 2,
    Stopping = 3,
    Stopped = 4,
    Pausing = 5,
    Paused = 6,
    Continuing = 7
}

我希望这对你有帮助。

于 2013-05-08T14:16:10.613 回答