40

我们已经能够创建一个网站。我们使用此链接中的信息做到了这一点:

https://msdn.microsoft.com/en-us/library/ms525598.aspx

但是,我们想使用除端口 80 之外的端口号。我们如何做到这一点?

我们正在使用 IIS 6

4

6 回答 6

79

如果您使用的是 IIS 7,则有一个名为Microsoft.Web.Administration的新托管 API

上述博客文章中的一个示例:

ServerManager iisManager = new ServerManager();
iisManager.Sites.Add("NewSite", "http", "*:8080:", "d:\\MySite");
iisManager.CommitChanges(); 

如果您使用的是 IIS 6 并且想要这样做,不幸的是它会更复杂。

您必须在每台服务器上创建一个 Web 服务,一个处理网站创建的 Web 服务,因为通过网络直接模拟用户将无法正常工作(如果我没记错的话)。

您将不得不使用互操作服务并执行与此类似的操作(此示例使用两个对象,服务器和站点,它们是存储服务器和站点配置的自定义类的实例):

string metabasePath = "IIS://" + server.ComputerName + "/W3SVC";
DirectoryEntry w3svc = new DirectoryEntry(metabasePath, server.Username, server.Password);

string serverBindings = ":80:" + site.HostName;
string homeDirectory = server.WWWRootPath + "\\" + site.FolderName;


object[] newSite = new object[] { site.Name, new object[] { serverBindings }, homeDirectory };

object websiteId = (object)w3svc.Invoke("CreateNewSite", newSite);

// Returns the Website ID from the Metabase
int id = (int)websiteId;

在这里查看更多

于 2009-08-17T08:59:53.430 回答
14

这是解决方案。
博客文章:如何在 IIS 7 中添加新网站

在按钮上单击:

try
 {
  ServerManager serverMgr = new ServerManager();
  string strWebsitename = txtwebsitename.Text; // abc
  string strApplicationPool = "DefaultAppPool";  // set your deafultpool :4.0 in IIS
  string strhostname = txthostname.Text; //abc.com
  string stripaddress = txtipaddress.Text;// ip address
  string bindinginfo = stripaddress + ":80:" + strhostname;

  //check if website name already exists in IIS
    Boolean bWebsite = IsWebsiteExists(strWebsitename);
    if (!bWebsite)
     {
        Site mySite = serverMgr.Sites.Add(strWebsitename.ToString(), "http", bindinginfo, "C:\\inetpub\\wwwroot\\yourWebsite");
        mySite.ApplicationDefaults.ApplicationPoolName = strApplicationPool;
        mySite.TraceFailedRequestsLogging.Enabled = true;
        mySite.TraceFailedRequestsLogging.Directory = "C:\\inetpub\\customfolder\\site";
        serverMgr.CommitChanges();
        lblmsg.Text = "New website  " + strWebsitename + " added sucessfully";
     }
     else
     {
        lblmsg.Text = "Name should be unique, " + strWebsitename + "  is already exists. ";
     }
   }
  catch (Exception ae)
  {
      Response.Redirect(ae.Message);
   }

遍历站点是否名称已经存在

    public bool IsWebsiteExists(string strWebsitename)
    {
        Boolean flagset = false;
        SiteCollection sitecollection = serverMgr.Sites;
        foreach (Site site in sitecollection)
        {
            if (site.Name == strWebsitename.ToString())
            {
                flagset = true;
                break;
            }
            else
            {
                flagset = false;
            }
        }
        return flagset;
    }
于 2012-02-06T09:28:50.557 回答
4

尝试以下代码以了解未使用的端口号

        DirectoryEntry root = new DirectoryEntry("IIS://localhost/W3SVC");

        // Find unused ID PortNo for new web site
        bool found_valid_port_no = false;
        int random_port_no = 1;

        do
        {
            bool regenerate_port_no = false;
            System.Random random_generator = new Random();
            random_port_no = random_generator.Next(9000,15000);

            foreach (DirectoryEntry e in root.Children)
            {
                if (e.SchemaClassName == "IIsWebServer")
                {

                    int site_id = Convert.ToInt32(e.Name);
                    //For each detected ID find the port Number 

                     DirectoryEntry vRoot = new DirectoryEntry("IIS://localhost/W3SVC/" + site_id);
                     PropertyValueCollection pvcServerBindings = vRoot.Properties["serverbindings"];
                     String bindings = pvcServerBindings.Value.ToString().Replace(":", "");
                     int port_no = Convert.ToInt32(bindings);

                     if (port_no == random_port_no)
                    {
                        regenerate_port_no = true;
                        break;
                    }
                }
            }

            found_valid_port_no = !regenerate_port_no;
        } while (!found_valid_port_no);

        int newportId = random_port_no;
于 2010-01-29T07:40:00.723 回答
2

我已经在这里回答了所有问题并进行了测试。这是此问题的最干净更智能的答案版本。但是,这仍然无法在 IIS 6.0 上运行。因此需要 IIS 8.0 或更高版本。

string domainName = "";
string appPoolName = "";
string webFiles = "C:\\Users\\John\\Desktop\\New Folder";
if (IsWebsiteExists(domainName) == false)
{
    ServerManager iisManager = new ServerManager();
    iisManager.Sites.Add(domainName, "http", "*:8080:", webFiles);
    iisManager.ApplicationDefaults.ApplicationPoolName = appPoolName;
    iisManager.CommitChanges();
}
else
{
    Console.WriteLine("Name Exists already"); 
}


public static bool IsWebsiteExists(string strWebsitename)
{
    ServerManager serverMgr = new ServerManager();
    Boolean flagset = false;
    SiteCollection sitecollection = serverMgr.Sites;
    flagset = sitecollection.Any(x => x.Name == strWebsitename);
    return flagset;
}
于 2019-03-02T05:11:25.560 回答
0
  1. 在站点的属性中选择“网站”选项卡并指定 TCP 端口。
  2. 在工作室中调试目的指定 http://localhost:<port>/<site>;在“使用本地 IIS Web 服务器”的 Web 选项卡上
于 2009-08-17T08:53:25.987 回答
0

这种简化的方法将创建一个具有默认绑定设置的站点,并在需要时创建应用程序池:

public void addIISApplication(string siteName, string physicalPath, int port, string appPoolName)
{
    using (var serverMgr = new ServerManager())
    {
        var sitecollection = serverMgr.Sites;
        if (!sitecollection.Any(x => x.Name.ToLower() == siteName.ToLower()))
        {
            var appPools = serverMgr.ApplicationPools;
            if (!appPools.Any(x => x.Name.ToLower() == appPoolName.ToLower()))
            {
               serverMgr.ApplicationPools.Add(appPoolName);
            }

            var mySite = serverMgr.Sites.Add(siteName, physicalPath, port);
            mySite.ApplicationDefaults.ApplicationPoolName = appPoolName;
            serverMgr.CommitChanges();
        }
    }
}
于 2022-01-18T02:27:10.913 回答