English 中文(简体)
不能把财产归结为混杂状态。 A. 随着属性已经使用的时间
原标题:Property attributeMapFailedPasswordAnswerLockoutTime cannot be mapped to schema attribute lockoutTime as the attribute is already in use

我正试图利用AD成员提供人与当地的ADAM服务器连接,我正在发现标题中的错误。 如果我去掉了有利的密码重新编号和它依靠的特性,我就能够连接起来。

我试图回避这个问题,没有出现。 以下是我的提供者会议。 任何建议都将受到高度赞赏。

<providers>
    <add name="AspNetActiveDirectoryMembershipProvider"
      type="System.Web.Security.ActiveDirectoryMembershipProvider, System.Web, Version=3.5.0.0,               Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
      connectionStringName="ADService"
      connectionUsername="[username]"
      connectionPassword="[password]"
      connectionProtection="Secure"
      enableSearchMethods="true"
      enablePasswordReset="true"
      requiresQuestionAndAnswer="true"
      applicationName="/"
      description="Default AD connection"
      requiresUniqueEmail="true"
      clientSearchTimeout="30"
      serverSearchTimeout="30"
      attributeMapPasswordQuestion="department"
      attributeMapPasswordAnswer="division"
      attributeMapFailedPasswordAnswerCount="badPwdCount"
      attributeMapFailedPasswordAnswerTime="badPasswordTime"
      attributeMapFailedPasswordAnswerLockoutTime="lockoutTime"
      attributeMapEmail = "mail"
      attributeMapUsername = "userPrincipalName"
      maxInvalidPasswordAttempts = "5"
      passwordAttemptWindow = "10"
      passwordAnswerAttemptLockoutDuration = "30"
      minRequiredPasswordLength="7"
      minRequiredNonalphanumericCharacters="1"/>
  </providers>

FYI ...... 得出类似结果的最近一点是,有人将这一错误推向类似的属性,他刚刚重新启用机器。 这对我来说是徒劳的。 我确实认为这一条以及,但我正在努力争取使LDAP管理起来,以促成这一变化。 尤其是因为我们已经拥有这些财产。

最佳回答
问题回答

暂无回答




相关问题
Using JavaScript to get an LDAP multi-valued string attribute

I am trying to retrieve an object attribute in Active Directory that appears to be a multi-valued string (See canonicalName). After performing a search: var conn; conn.Open = Provider=ADsDSOObject; ...

Test "User Must Change Password" field in .Net 3.5

I m trying to perform some basic AD User managment tasks in C# using .Net 3.5 I ve got a System.DirectoryServices.AccountManagement.UserPrincipal object that contains the user details. I can call ...

SSIS Script Task connecting to AD

I have written a SSIS 2005 script task that connects to Active Directory and reads user accountnames to store in database. I was able to successfully test this on my local system by executing dtexec....

Update Full Name in Active Directory

I ve been thrust into the deep end with Active Directory (I m a web developer, go fig) I have a user that I ve changed first/last name on but the Full Name hasn t changed which is causing issues with ...

Authenticate against Active Directory/ISA from php [closed]

I have a complicated problem, exacerbated by the fact I don t really know where to start! Over the last few years, I ve developed a number of php web-based systems. When I built them, our network was ...

热门标签