Connection string to connect to Active Directory using LDAP(使用 LDAP 连接到 Active Directory 的连接字符串)
问题描述
我的系统管理员给了我这个:
my system admin gave me this:
域名:capp.net用户:cappdhr2
Domain : capp.net USER : cappdhr2
通过:admin@12345
Pass : admin@12345
连接字符串是什么?
我对 adfs 非常陌生.所以我试过这个:
I am very very new to adfs. So i tried this:
<add name="ADConnectionString"
connectionString="LDAP://capp.net/CN=dhr,DC=capp,DC=net" />
<authentication mode="Forms">
<forms name=".ADAuthCookie" timeout="43200"/>
</authentication>
<authorization>
</authorization>
<membership>
<providers>
<clear/>
<add name="MyADMembershipProvider"
type="System.Web.Security.ActiveDirectoryMembershipProvider"
connectionUsername="cn=dhr2"
connectionPassword="admin@12345"
connectionStringName="ADConnectionString"/>
</providers>
</membership>
我总是收到这个错误:无法与服务器建立安全连接
I am always getting this error: Unable to establish secure connection with the server
我的连接字符串有问题.我只是不知道如何解决它.
I am doing someting wrong with the connection string. I just dont know how to fix it.
推荐答案
每当我从 .net 访问 AD 时,我都会执行以下操作:
Whenever I've accessed AD from .net I've done the following:
var directoryEntry = new DirectoryEntry("LDAP://capp.net");
directoryEntry.Username = "cappdhr2";
directoryEntry.Password = "admin@12345";
然后您可以使用 DirectorySearcher 查询AD".
Then you can query "AD" using the DirectorySearcher.
var directorySearcher = new DirectorySearcher(directoryEntry);
...
这篇关于使用 LDAP 连接到 Active Directory 的连接字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 LDAP 连接到 Active Directory 的连接字符串
- 为什么 C# 中的堆栈大小正好是 1 MB? 2022-01-01
- 在 C# 中异步处理项目队列 2022-01-01
- 使用 rss + c# 2022-01-01
- Windows 喜欢在 LINUX 中使用 MONO 进行服务开发? 2022-01-01
- 是否可以在 .Net 3.5 中进行通用控件? 2022-01-01
- CanBeNull和ReSharper-将其用于异步任务? 2022-01-01
- C# 通过连接字符串检索正确的 DbConnection 对象 2022-01-01
- 带问号的 nvarchar 列结果 2022-01-01
- 在 LINQ to SQL 中使用 contains() 2022-01-01
- Azure Active Directory 与 MVC,客户端和资源标识同一 2022-01-01
