下面有一些可怕的错误,但我无法弄清楚是什么。 尽管网站创建的类似于魅力,但应该与之关联的应用程序池根本不会创建。
public string Create(string sitename)
{
try
{
using (ServerManager serverMgr = new ServerManager())
{
string strhostname = sitename + "." + domain;
string bindinginfo = ":80:" + strhostname;
if (!IsWebsiteExists(serverMgr.Sites, strhostname))
{
Site mySite = serverMgr.Sites.Add(strhostname, "http", bindinginfo, "C:\\admin\\" + domain);
ApplicationPool newPool = serverMgr.ApplicationPools.Add(strhostname);
newPool.ManagedRuntimeVersion = "v4.0";
newPool.ManagedPipelineMode = ManagedPipelineMode.Integrated;
serverMgr.CommitChanges();
return "Website " + strhostname + " added sucessfully";
}
else
{
return "Name should be unique, " + strhostname + " already exists.";
}
}
}
catch (Exception ex)
{
return ex.Message;
}
}
我在这里做错了什么?
答案 0 :(得分:1)
我不希望应用程序池名称中包含标点符号。将域添加为应用程序池名称的一部分有点不寻常 - 也许这就是源代码。这里讨论了基本方法,以及appcmd
语法,以便在命令行上执行相同的操作 - 尝试在cmd行上创建应用程序池,以查看您的参数是否可接受。
答案 1 :(得分:1)
这里发生的事情是,当您创建网站时,它会自动分配到DefaultAppPool
。
您需要做的是替换您网站的 root Application
(/
)并将其指向您刚刚创建的应用程序池。
最简单的方法是先清除新网站的Application
集合,然后添加一个指向应用程序池的新 root 应用程序。
将您的代码段更改为以下内容:
Site mySite = serverMgr.Sites.Add(strhostname, "http", bindinginfo, "C:\\admin\\" + domain);
// Clear Applications collection
mySite.Applications.Clear();
ApplicationPool newPool = serverMgr.ApplicationPools.Add(strhostname);
newPool.ManagedRuntimeVersion = "v4.0";
newPool.ManagedPipelineMode = ManagedPipelineMode.Integrated;
// Create new root app and specify new application pool
Application app = mySite.Applications.Add("/", "C:\\admin\\" + domain);
app.ApplicationPoolName = strhostname;
serverMgr.CommitChanges();