Csharp/C#教程:GroupPrincipal方法FindByIdentity抛出奇怪的exception分享


GroupPrincipal方法FindByIdentity抛出奇怪的exception

我试图通过组名获取所有用户并在sharepoint webpart中显示它。 adGroupName类似=“CompanyGroup”。

GroupPrincipal grp = GroupPrincipal.FindByIdentity(ctx, IdentityType.Name, adGroupName); 

例外:

为了执行此操作,必须在连接上完成成功绑定

为什么这样,我做错了什么?

堆栈跟踪:

  at System.DirectoryServices.DirectoryEntry.Bind(Boolean throwIfFail) at System.DirectoryServices.DirectoryEntry.Bind() at System.DirectoryServices.DirectoryEntry.get_AdsObject() at System.DirectoryServices.PropertyValueCollection.PopulateList() at System.DirectoryServices.PropertyValueCollection..ctor(DirectoryEntry entry, String propertyName) at System.DirectoryServices.PropertyCollection.get_Item(String propertyName) at System.DirectoryServices.AccountManagement.PrincipalContext.DoLDAPDirectoryInitNoContainer() at System.DirectoryServices.AccountManagement.PrincipalContext.DoDomainInit() at System.DirectoryServices.AccountManagement.PrincipalContext.Initialize() at System.DirectoryServices.AccountManagement.PrincipalContext.get_QueryCtx() at System.DirectoryServices.AccountManagement.Principal.FindByIdentityWithTypeHelper(PrincipalContext context, Type principalType, Nullable`1 identityType, String identityValue, DateTime refDate) at System.DirectoryServices.AccountManagement.Principal.FindByIdentityWithType(PrincipalContext context, Type principalType, IdentityType identityType, String identityValue) at System.DirectoryServices.AccountManagement.GroupPrincipal.FindByIdentity(PrincipalContext context, IdentityType identityType, String identityValue) at NewCo.Intranet.Common.DataAccess.ADUserManager.GetUserForGroup(String adGroupName, Boolean recursive) at NewCo.Intranet.Common.DataAccess.ADUserManager.GetMemberForCurrentSite() at NewCo.Intranet.Components.WebParts.ADGroupMembers.ADGroupMembersUserControl.Page_Load(Object sender, EventArgs e) 

DirectoryServicesCOMException {“发生操作错误。 r n”}

答案在博客中找到:

https://sharepoint-tweaking.blogspot.com/2007/12/impersonation-in-aspnet-causes.html

解决方案是使用代码:

 using (HostingEnvironment.Impersonate()) { // This code runs as the application pool user DirectorySearcher searcher ... } 

你是否使用这样的东西来获取你的背景?

 /* Retreiving a principal context */ PrincipalContext ctx = new PrincipalContext(ContextType.Domain, "MachineIP:389", "dc=dom,dc=fr", "jpb", "root.123"); 

您可以使用域名的DNS名称或其中一个DC替换MachineIP。

上述就是C#学习教程:GroupPrincipal方法FindByIdentity抛出奇怪的exception分享的全部内容,如果对大家有所用处且需要了解更多关于C#学习教程,希望大家多多关注—计算机技术网(www.ctvol.com)!

本文来自网络收集,不代表计算机技术网立场,如涉及侵权请联系管理员删除。

ctvol管理联系方式QQ:251552304

本文章地址:https://www.ctvol.com/cdevelopment/950763.html

(0)
上一篇 2021年11月17日
下一篇 2021年11月17日

精彩推荐