以编程方式创建新的IIS网站时,如何将其添加到现有的应用程序池中?

时间:2010-03-12 17:10:11

标签: c# iis application-pool

我已经成功地自动创建了一个新的IIS网站,但是我编写的代码并不关心应用程序池,它只是添加到DefaultAppPool。但是,我想将这个新创建的站点添加到现有的应用程序池中。

以下是我用来创建新网站的代码。

        var w3Svc = new DirectoryEntry(string.Format("IIS://{0}/w3svc", webserver));
        var newsite = new object[] { serverComment, new object[] { serverBindings }, homeDirectory };
        var websiteId = w3Svc.Invoke("CreateNewSite", newsite);
        site.Invoke("Start", null);
        site.CommitChanges();

< 更新>

虽然这与问题没有直接关系,但以下是上面使用的一些示例值。这可能有助于人们更准确地理解上面代码的作用。

  • webServer:“localhost”
  • serverComment:“testing.dev”
  • serverBindings:“:80:testing.dev”
  • homeDirectory:“c:\ inetpub \ wwwroot \ testing \”

< /更新>

如果我知道我希望此网站所在的应用程序池的名称,我该如何找到它并将此网站添加到该网站?

3 个答案:

答案 0 :(得分:6)

您必须在虚拟目录(而不是网络服务器)上分配AppPool,并将AppIsolated属性设置为2,这意味着池化过程;)

http://msdn.microsoft.com/en-us/library/ms525598%28v=VS.90%29.aspx

来自链接的相关代码示例:

static void AssignVDirToAppPool(string metabasePath, string appPoolName)
{
  //  metabasePath is of the form "IIS://<servername>/W3SVC/<siteID>/Root[/<vDir>]"
  //    for example "IIS://localhost/W3SVC/1/Root/MyVDir" 
  //  appPoolName is of the form "<name>", for example, "MyAppPool"
  Console.WriteLine("\nAssigning application {0} to the application pool named {1}:", metabasePath, appPoolName);

  try
  {
    DirectoryEntry vDir = new DirectoryEntry(metabasePath);
    string className = vDir.SchemaClassName.ToString();
    if (className.EndsWith("VirtualDir"))
    {
      object[] param = { 0, appPoolName, true };
      vDir.Invoke("AppCreate3", param);
      vDir.Properties["AppIsolated"][0] = "2";
      Console.WriteLine(" Done.");
    }
    else
      Console.WriteLine(" Failed in AssignVDirToAppPool; only virtual directories can be assigned to application pools");
  }
  catch (Exception ex)
  {
    Console.WriteLine("Failed in AssignVDirToAppPool with the following exception: \n{0}", ex.Message);
  }
}

请注意,如果您没有明确地向应用程序添加新的虚拟目录,metabasePath将只是“IIS://<servername>/W3SVC/<siteID>/Root

答案 1 :(得分:0)

您需要从IIS://{0}/W3SVC/AppPools获取AppPool,并将其附加到site的{​​{1}}。类似的东西:

AppPoolId

答案 2 :(得分:0)

site.Properties [“AppPoolId”] [0] =“poolname”;