我在通过System.DirectoryServices
最初我在域上注册的计算机上启动了我的应用程序,但因为它是一个活动域,所以我不想对AD做任何写入,所以我设置了一台装有Windows XP的机器作为主机操作系统,并在VM上安装了Windows Server 2003。
我在机器中添加了另一个以太网端口并设置了一个交换机,1个以太网端口专用于VM,另一个端口用于主机。
在配置IP地址以使它们进行通信后,我将我的应用程序转移到主机上并将其启动,但我得到了DirectoryServicesCOMException
。
显示用户名和密码无效的消息:(只是为了检查它是不是活动目录我创建了第三个虚拟机并安装了Windows XP,我使用APP中测试的凭据添加到域中,是一种享受。
所以我认为一定是因为运行应用程序的机器不属于域。
下面是造成问题的代码块:
public CredentialValidation(String Domain, String Username, String Password, Boolean Secure)
{
//Validate the Domain!
try
{
PrincipalContext Context = new PrincipalContext(ContextType.Domain, Domain); //Throws Exception
_IsValidDomain = true;
//Test the user login
_IsValidLogin = Context.ValidateCredentials(Username, Password);
//Check the Group Admin is within this user
//******HERE
var Results = UserPrincipal.FindByIdentity(Context, Username).GetGroups(Context);
foreach(Principal Result in Results)
{
if (Result.SamAccountName == "Domain Admins")
{
_IsAdminGroup = true;
break;
}
}
Results.Dispose();
Context.Dispose();
}
catch (PrincipalServerDownException)
{
_IsValidDomain = false;
}
}
正在输入登录对话框中的信息:
Domain: test.internal
Username: testaccount
Password: Password01
希望有人可以解决这个错误。
更新
检查服务器上的安全日志后,我可以看到我的登录尝试成功,但这归结为:
_IsValidLogin = Context.ValidateCredentials(Username, Password);
我检查组后导致错误的行,因此主要问题是下面的代码行无法从未加入网络的计算机中正常工作:
var Results = UserPrincipal.FindByIdentity(Context, Username).GetGroups(Context);
答案 0 :(得分:2)
根据您的代码段,在尝试创建PrincipalContext之前,您在调用ValidateCredentials之前失败了。此时,运行代码的线程仍在本地身份(如果您在Web进程中)或您在计算机上签名的身份(对于Windows进程)下工作。 test.internal域中不存在这些中的任何一个。
您可能希望尝试在构造函数中包含用户名和密码的PrincipalContext重载。见http://msdn.microsoft.com/en-us/library/bb341016.aspx
答案 1 :(得分:2)
我曾经通过C#.NET进行相当多的用户管理。我只是挖出了一些你可以尝试的方法。
以下两种方法将获取给定SAM帐户名称的DirectoryEntry对象。它需要一个DirectoryEntry,它是您要开始搜索帐户的OU的根目录。
另一个将为您提供用户所属组的可分辨名称列表。然后,您可以使用这些DN搜索AD并获取DirectoryEntry对象。
public List<string> GetMemberOf(DirectoryEntry de)
{
List<string> memberof = new List<string>();
foreach (object oMember in de.Properties["memberOf"])
{
memberof.Add(oMember.ToString());
}
return memberof;
}
public DirectoryEntry GetObjectBySAM(string sam, DirectoryEntry root)
{
using (DirectorySearcher searcher = new DirectorySearcher(root, string.Format("(sAMAccountName={0})", sam)))
{
SearchResult sr = searcher.FindOne();
if (!(sr == null)) return sr.GetDirectoryEntry();
else
return null;
}
}