以编程方式将IIS主机标头添加到网站

本文关键字:添加 网站 主机 编程 方式 IIS | 更新日期: 2023-09-27 17:48:52

我想设置一个管理页面(ASP.NET/C#),它可以将IIS主机头添加到管理页面所在的网站。这可能吗?

我不想添加http头-我想模仿手动进入IIS的操作,调出网站的属性,点击网站选项卡上的高级,在高级网站标识屏幕上,并使用主机头值、ip地址和tcp端口创建一个新的"标识"。

以编程方式将IIS主机标头添加到网站

这里有一个关于用程序化RSS 向网站添加另一个身份的论坛

此外,这里还有一篇关于如何在IIS:中通过代码附加主机头的文章

以下示例将主机标头添加到IIS中的网站。这涉及到更改ServerBindings属性。没有可用于将新服务器绑定附加到此属性的Append方法,因此需要做的是读取整个属性,然后将其与新数据一起重新添加回来。下面的代码就是这样做的。ServerBindings属性的数据类型为MULTISZ,字符串格式为IP:Port:Hostname。

请注意,此示例代码不进行任何错误检查。重要的是,每个ServerBindings条目都是唯一的,并且你——程序员——负责检查这一点(这意味着你需要遍历所有条目,并检查即将添加的内容是否是唯一的)。

using System.DirectoryServices;
using System;
 
public class IISAdmin
{
    /// <summary>
    /// Adds a host header value to a specified website. WARNING: NO ERROR CHECKING IS PERFORMED IN THIS EXAMPLE. 
    /// YOU ARE RESPONSIBLE FOR THAT EVERY ENTRY IS UNIQUE
    /// </summary>
    /// <param name="hostHeader">The host header. Must be in the form IP:Port:Hostname </param>
    /// <param name="websiteID">The ID of the website the host header should be added to </param>
    public static void AddHostHeader(string hostHeader, string websiteID)
    {
        
        DirectoryEntry site = new DirectoryEntry("IIS://localhost/w3svc/" + websiteID );
        try
        {                        
            //Get everything currently in the serverbindings propery. 
            PropertyValueCollection serverBindings = site.Properties["ServerBindings"];
            
            //Add the new binding
            serverBindings.Add(hostHeader);
            
            //Create an object array and copy the content to this array
            Object [] newList = new Object[serverBindings.Count];
            serverBindings.CopyTo(newList, 0);
            
            //Write to metabase
            site.Properties["ServerBindings"].Value = newList;            
                        
            //Commit the changes
            site.CommitChanges();
                        
        }
        catch (Exception e)
        {
            Console.WriteLine(e);
        }
        
    }
}
 
public class TestApp
{
    public static void Main(string[] args)
    {
        IISAdmin.AddHostHeader(":80:test.com", "1");
    }
}

但我不知道如何循环遍历头值来进行上面提到的错误检查。