我正在尝试更改我的 LDAP 连接以通过 SSL 工作。但是,SSL 连接是经过身份验证的,这意味着它通常需要用户名和密码,而标准连接不需要:
<add name="ADConnectionString" connectionString="LDAP://myExampleLDAPServer.com:389/CN=Users,DC=example,DC=com" />
变成
<add name="ADConnectionString" connectionString="LDAP:///myExampleLDAPServer.com:636/CN=Users,DC=example,DC=com" />
但它需要一个用户名和密码,我根本不想将其存储在 web.config 中。我设置了与 SQLServer 的连接,integrated security=True
该连接使用应用程序池的身份对 SQLServer 进行身份验证。是否可以将我的 LDAP 连接配置为也使用集成安全性?