狠狠色丁香婷婷综合尤物/久久精品综合一区二区三区/中国有色金属学报/国产日韩欧美在线观看 - 国产一区二区三区四区五区tv

LOGO OA教程 ERP教程 模切知識交流 PMS教程 CRM教程 開發文檔 其他文檔  
 
網站管理員

【C#】使用ServerManager類配置IIS身份驗證設置

admin
2021年5月11日 15:46 本文熱度 3689
我正在使用ServerManager類(來自Microsoft.Web.Administration)在運行IIS 7的服務器上創建應用程序,我想配置應用程序是否在應用程序基礎上使用匿名身份驗證或 Windows身份驗證,因此我不能簡單地要求IT更改根站點上的設置,該應用程序的內容屬于第三方,因此我不允許更改應用程序內的web.config文件。

Application類沒有公開任何有用的屬性,但也許我可以使用ServerManager的GetApplicationHostConfiguration方法完成某些事情?

聽起來你希望改變網站的互聯網信息系統配置,如果這是正確的,這樣的事情應該有效:

using (ServerManager serverManager = new ServerManager())
{
    Configuration config = serverManager.GetWebConfiguration("Contoso");
    ConfigurationSection authorizationSection = config.GetSection("system.webServer/security/authorization");
    ConfigurationElementCollection authorizationCollection = authorizationSection.GetCollection();
    ConfigurationElement addElement = authorizationCollection.CreateElement("add");
    addElement["accessType"] = @"Allow";
    addElement["roles"] = @"administrators";
    authorizationCollection.Add(addElement);
    serverManager.CommitChanges();
 }

上面的代碼允許您創建一個授權規則,允許組中的特定用戶訪問特定站點。在這種情況下,該網站是Contoso。

然后,這將禁用該站點的匿名身份驗證,然后啟用Basic&該站點的Windows身份驗證:

using(ServerManager serverManager = new ServerManager()) 
{ 
    Configuration config = serverManager.GetApplicationHostConfiguration();
    ConfigurationSection anonymousAuthenticationSection = config.GetSection("system.webServer/security/authentication/anonymousAuthentication", "Contoso");
    anonymousAuthenticationSection["enabled"] = false;
    ConfigurationSection basicAuthenticationSection = config.GetSection("system.webServer/security/authentication/basicAuthentication", "Contoso");
    basicAuthenticationSection["enabled"] = true;
    ConfigurationSection windowsAuthenticationSection = config.GetSection("system.webServer/security/authentication/windowsAuthentication", "Contoso");
    windowsAuthenticationSection["enabled"] = true;
    serverManager.CommitChanges();
}

或者,您可以根據需要添加IIS管理器用戶帳戶,您可以設置為某些權限來操縱和管理其他應用程序。

using (ServerManager serverManager = new ServerManager())
{
    Configuration config = serverManager.GetAdministrationConfiguration();
    ConfigurationSection authenticationSection = config.GetSection("system.webServer/management/authentication");
    ConfigurationElementCollection credentialsCollection = authenticationSection.GetCollection("credentials");
    ConfigurationElement addElement = credentialsCollection.CreateElement("add");
    addElement["name"] = @"ContosoUser";
    addElement["password"] = @"P@ssw0rd";
    addElement["enabled"] = true;
    credentialsCollection.Add(addElement);
    serverManager.CommitChanges();
}

互聯網信息系統具有很大的靈活性,它非常強大,通過那里參考的文件也非常深入。這些示例很難適應您的特定用途,或者至少提供一定程度的理解,以使其按照您的意愿行事。

希望有幫助,這些例子來自here


該文章在 2021/5/11 15:46:34 編輯過
關鍵字查詢
相關文章
正在查詢...
點晴ERP是一款針對中小制造業的專業生產管理軟件系統,系統成熟度和易用性得到了國內大量中小企業的青睞。
點晴PMS碼頭管理系統主要針對港口碼頭集裝箱與散貨日常運作、調度、堆場、車隊、財務費用、相關報表等業務管理,結合碼頭的業務特點,圍繞調度、堆場作業而開發的。集技術的先進性、管理的有效性于一體,是物流碼頭及其他港口類企業的高效ERP管理信息系統。
點晴WMS倉儲管理系統提供了貨物產品管理,銷售管理,采購管理,倉儲管理,倉庫管理,保質期管理,貨位管理,庫位管理,生產管理,WMS管理系統,標簽打印,條形碼,二維碼管理,批號管理軟件。
點晴免費OA是一款軟件和通用服務都免費,不限功能、不限時間、不限用戶的免費OA協同辦公管理系統。
Copyright 2010-2025 ClickSun All Rights Reserved