gpt4 book ai didi

c# - IIS 错误 : Unrecognized configuration path 'MACHINE/WEBROOT/APPHOST/websiteName

转载 作者:行者123 更新时间:2023-12-05 07:42:54 24 4
gpt4 key购买 nike

我正在尝试在 C# 代码中设置 IP 地址和域限制,我正在关注 this文章,但它给了我无法识别的位置错误。

Error: Unrecognized configuration path 'MACHINE/WEBROOT/APPHOST/websiteName

我的代码:

using (var serverManager = new ServerManager())
{
var config = serverManager.GetApplicationHostConfiguration();
var ipSecuritySection = config.GetSection("system.webServer/security/ipSecurity", "websiteName");
var ipSecurityCollection = ipSecuritySection.GetCollection();

var addElement = ipSecurityCollection.CreateElement("add");
addElement["ipAddress"] = @"SomeIP";
addElement["allowed"] = false;
ipSecurityCollection.Add(addElement);

var addElement1 = ipSecurityCollection.CreateElement("add");
addElement1["ipAddress"] = @"SomeIP";
addElement1["subnetMask"] = @"255.255.0.0";
addElement1["allowed"] = false;
ipSecurityCollection.Add(addElement1);

serverManager.CommitChanges();

}

在这一行之后它给我错误:

var ipSecuritySection = config.GetSection("system.webServer/security/ipSecurity", "websiteName");

谁能告诉我哪里出了问题,或者我遗漏了什么。

最佳答案

您可能会为 IIS/IIS Express 获取损坏的 applicationHost.config,其中网站没有根应用程序。如果您不知道如何编辑它,请发布 <sites>在问题中标记您的文件,以便其他人可以查看并建议如何修复。

关于c# - IIS 错误 : Unrecognized configuration path 'MACHINE/WEBROOT/APPHOST/websiteName,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44133547/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com