0

我在从我的 Commerce Server 2007 ASP .NET 解决方案连接到 ADAM 实例时遇到了一些困难,我相信它与我的配置文件有关。简短的版本是我可以使用我当前的用户名/密码通过 ADAM-ADSIEdit 连接到 ADAM,但是当我把它放在我的 web.config 中时,我得到“解析器错误消息:登录失败:未知用户名或密码错误”。

<connectionStrings>
<add name="LDAPConnection" connectionString="LDAP://<domain/>:389/<Partition DN>" />
</connectionStrings>

<membership defaultProvider="MembershipADAMProvider">
  <providers>
    <add name="MembershipADAMProvider"
        type="System.Web.Security.ActiveDirectoryMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
        connectionStringName="LDAPConnection"
        connectionProtection="None" 
        connectionUsername="<domain>\<username>"
        connectionPassword="<password>"/>
  </providers>
</membership>   

我已经尝试了很多方法来解决这个问题,但没有提出任何合理的解决方案。我从连接字符串开始,没有用户名或密码。我收到一条错误消息,提示我无法建立安全连接。那是我添加 connectionProtection="None" 行的时候。然后它说我不能在没有安全连接的情况下使用默认凭据,所以我添加了用户名和密码字段。创建 ADAM 实例时,我使用了当前的 Windows 登录凭据。我尝试在 web.config 中使用我的 Windows 登录凭据,并且尝试了各种域名,几乎所有我能想到的。我完全迷失了为什么我不能与 ldp 绑定,我可以使用这些域\用户名和密码在 ASIEdit 中连接,但不能从我的 CommerceServer ASP .NET 应用程序中连接......

谢谢,约翰

4

1 回答 1

0

你应该关注这里的信息,有很多关于安全连接的好东西,以及如何在你的 ADAM 实例中禁用它们以用于开发目的。

于 2010-06-08T21:25:33.663 回答