首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >System.DirectoryServices.DirectoryServicesCOMException:发生操作错误。

System.DirectoryServices.DirectoryServicesCOMException:发生操作错误。
EN

Stack Overflow用户
提问于 2013-10-12 02:20:35
回答 1查看 10.6K关注 0票数 3

我正在尝试从在本地intranet上提交ASP.NET表单的用户那里获取电子邮件地址。在我的本地机器上测试时,它工作得很好。但当我发布并开始在生产环境中测试它时,它不像第74行。

代码语言:javascript
复制
Server Error in '/' Application.
--------------------------------------------------------------------------------

An operations error occurred.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 

Exception Details: System.DirectoryServices.DirectoryServicesCOMException: An operations error occurred.


Source Error: 


Line 71:         adSearcher.SearchScope = SearchScope.Subtree;
Line 72:         adSearcher.Filter = "(&(objectClass=user)(samaccountname=" + userInQuestion + "))";
Line 73:         SearchResult userObject = adSearcher.FindOne();
Line 74:         if (userObject != null) 
Line 75:         { 

Source File: c:\Web\Support-t\Content\Default.aspx.cs    Line: 73 

Stack Trace: 


[DirectoryServicesCOMException (0x80072020): An operations error occurred.
]
   System.DirectoryServices.DirectoryEntry.Bind(Boolean throwIfFail) +628309
   System.DirectoryServices.DirectoryEntry.Bind() +44
   System.DirectoryServices.DirectoryEntry.get_AdsObject() +42
   System.DirectoryServices.DirectorySearcher.FindAll(Boolean findMoreThanOne) +98
   System.DirectoryServices.DirectorySearcher.FindOne() +44
   _Default.Page_Load(Object sender, EventArgs e) in c:\Web\Support-t\Content\Default.aspx.cs:73
   System.Web.UI.Control.LoadRecursive() +71
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +3178



--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.18033 

这段代码在我的页面加载中只是为了测试目的,所以在中可以获得一个即时的result....but,它永远不会在生产环境中加载页面,但在本地机器上调试VS时工作得很好……

代码语言:javascript
复制
IIdentity id = WindowsIdentity.GetCurrent();
        WindowsIdentity winId = id as WindowsIdentity;

        if (id == null) 
        {
            txtDetailedProblem.Text = "Identity is not a windows identity";
            return;
        }

        string userInQuestion = winId.Name.Split('\\')[1];
        string myDomain = winId.Name.Split('\\')[0]; // this is the domain that the user is in
        // the account that this program runs in should be authenticated in there                    
        DirectoryEntry entry = new DirectoryEntry("LDAP://" + myDomain);
        DirectorySearcher adSearcher = new DirectorySearcher(entry);

        adSearcher.SearchScope = SearchScope.Subtree;
        adSearcher.Filter = "(&(objectClass=user)(samaccountname=" + userInQuestion + "))";
        SearchResult userObject = adSearcher.FindOne();
        if (userObject != null) 
        {
            string[] props = new string[] {"mail"};
            foreach (string prop in props) 
            {
                txtTEST.Text = prop.ToString() + " " + userObject.Properties[prop][0].ToString();
            }
        }
EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2013-10-12 03:34:37

代码语言:javascript
复制
IIdentity id = WindowsIdentity.GetCurrent();
            WindowsIdentity winId = id as WindowsIdentity;

            if (id == null)
            {
                CurrentUserEmail = "identity is not a windows identity";
                return;
            }

            var name = winId.Name;

            string userInQuestion = name.Split('\\')[1];
            string myDomain = name.Split('\\')[0]; // this is the domain that the user is in
            // the account that this program runs in should be authenticated in there                    

            using (HostingEnvironment.Impersonate())
            {
                DirectoryEntry entry = new DirectoryEntry("LDAP://" + myDomain);
                DirectorySearcher adSearcher = new DirectorySearcher(entry);

                adSearcher.SearchScope = SearchScope.Subtree;
                adSearcher.Filter = "(&(objectClass=user)(samaccountname=" + userInQuestion + "))";
                SearchResult userObject = adSearcher.FindOne();
                if (userObject != null)
                {
                    string[] props = new string[] {"mail"};
                    foreach (string prop in props)
                    {   //when it works set variable to CurrentUserEmail instead of txtDetailPrblem textbox
                        CurrentUserEmail = userObject.Properties[prop][0].ToString();
                    }
                }

            }
票数 3
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/19324779

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档