连接字符串连接到使用LDAP的Active Directory [英] Connection string to connect to Active Directory using LDAP

查看:980
本文介绍了连接字符串连接到使用LDAP的Active Directory的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的系统管理员给了我这样的:

my system admin gave me this:

域:capp.net USER:CAPP \ dhr2

Domain : capp.net USER : capp\dhr2

通:管理员@ 12345

Pass : admin@12345

究竟会连接字符串是什么?

what will the connection string be?

我非常非常新的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 = "capp\dhr2";
directoryEntry.Password = "admin@12345";

然后就可以查询使用DirectorySearcher从AD。

Then you can query "AD" using the DirectorySearcher.

var directorySearcher = new DirectorySearcher(directoryEntry);

...

这篇关于连接字符串连接到使用LDAP的Active Directory的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆