我在我的asp.net MVC解決方案中使用AD身份驗證。它在本地服務器上工作,但是當我發佈它時,出現錯誤:「System.DirectoryServices.DirectoryServicesCOMException:發生操作錯誤。」。有人知道我必須做什麼嗎?發佈時出錯:System.DirectoryServices.DirectoryServicesCOMException
2
A
回答
2
驗證您是否正在發佈dll:System.DirectoryServices.dll和System.DirectoryServices.AccountManagement.dll。
轉到Web項目中的參考,找到兩個參考,按f4(屬性選項卡),並將「Copy Local」設置爲「True」。
- 後來
後,驗證您的IIS,如果設置 「Asp.Net模擬」 是能夠增加。 (點擊在IIS的web應用程序,而此前,在授權圖標)
0
我發現這部分代碼和它的作品現在:
using (HostingEnvironment.Impersonate()) {
// This code runs as the application pool user
DirectorySearcher searcher ...
}
http://sanjaymungar.blogspot.com/2010_07_01_archive.html 或 http://sharepoint-tweaking.blogspot.com/2007/12/impersonation-in-aspnet-causes.html
相關問題
- 1. System.DirectoryServices.DirectoryServicesCOMException:發生操作錯誤。
- 2. System.DirectoryServices.DirectoryServicesCOMException
- 3. System.DirectoryServices.DirectoryServicesCOMException(0x8007203B):發生本地錯誤
- 4. ClickOnce發佈時出錯
- 5. 錯誤System.DirectoryServices.DirectoryServicesCOMException(0x8007203B):出現了一個本地錯誤
- 6. 在IIS7中發佈網站時出錯
- 7. Azure iOS SDK發佈時出錯
- 8. 在牆上發佈消息時出錯
- 9. 在LinkedIn上發佈數據時出錯?
- 10. 在Umbraco中發佈數據時出錯
- 11. 發佈Web服務時出錯
- 12. 在matlab中發佈代碼時出錯
- 13. 在vk中發佈狀態時出錯
- 14. Google Assistant SDK 0.2.0發佈時出錯
- 15. 發佈ASP.NET Core項目時出錯
- 16. 在發佈到Twitter時出錯
- 17. 調試發佈版本時出錯
- 18. 使用.Net DLL發佈時出錯
- 19. 發佈Django-CMS 2.4頁面時出錯
- 20. 發佈應用程序時出錯
- 21. 使用ajax發佈數據時出錯?
- 22. 發佈Sitefinity4項目時出錯
- 23. 在ubuntu上發佈git repo時出錯
- 24. 使用JQuery發佈請求時出錯
- 25. 發佈webforms項目時出錯
- 26. SSDT發佈時出錯但未生成
- 27. 通過JMX發佈Bean時出錯
- 28. ObjectContext Dev中出錯但未發佈時
- 29. 發佈ASP.NET應用程序時出錯
- 30. 使用ninject發佈內容時出錯?
我已經設置此配置。 – Leila 2012-02-07 18:23:57
如果設置「Asp.Net模擬」啓用,請在您的iis中驗證。 (在iis中點擊您的web應用程序,然後在Authorization圖標中) – 2012-02-07 18:30:44