我正在开发一个针对 Active Directory 服务器对用户进行身份验证的 Web 应用程序。现在,如果我从该 AD 服务器域下的开发 PC 运行我的代码,我的代码运行顺利。我们需要使用 VPN 从完全不同的网络运行代码,而这里的开发 PC 不在那个 AD 中。尝试访问 AD 服务器时出现以下错误。
指定的域不存在或无法联系。
我的 VPN 工作正常。我可以使用这个 VPN 访问远程桌面。我知道需要进行一些调整才能解决问题,但找不到。我浏览了以下链接,但找不到任何解决方案。
以下是我的设置web.config
<appSettings>
<add key="LDAPPath" value="LDAP://DC=MYSERVER,DC=COM" />
<add key="ADGroupName" value="Analyst"/>
</appSettings>
这是我的代码
public class LdapAuthentication
{
private string _path;
private string _filterAttribute;
public LdapAuthentication()
{
_path = System.Configuration.ConfigurationManager.AppSettings["LDAPPath"].ToString();
}
public bool IsAuthenticated(string username, string pwd)
{
try
{
DirectoryEntry entry = new DirectoryEntry(_path, username, pwd);
entry.Path = _path;
entry.Username = username;
entry.Password = pwd;
// Bind to the native AdsObject to force authentication.
object obj = entry.NativeObject;
DirectorySearcher search = new DirectorySearcher(entry);
search.Filter = "(SAMAccountName=" + username + ")";
search.PropertiesToLoad.Add("cn");
SearchResult result = search.FindOne();
if (null == result)
{
return false;
}
// Update the new path to the user in the directory.
_path = result.Path;
_filterAttribute = (string)result.Properties["cn"][0];
}
catch (Exception ex)
{
throw new Exception("Error authenticating user. " + ex.Message);
}
return true;
}
}
任何帮助,将不胜感激。谢谢你。