I developed an application in sharepoint and configured it with LDAP. But i am unable to login tot he site using AD credentials.
<membership>
<providers>
<add name="LDAPFBAMembership" type="Microsoft.Office.Server.Security.LdapMembershipProvider, Microsoft.Office.Server, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" server="wipro.com" port="389" useSSL="false" userDNAttribute="distinguishedName" userNameAttribute="sAMAccountName" userContainer="DC=Domain,DC=com" userObjectClass="person" userFilter="(|(ObjectCategory=group)(ObjectClass=person))" scope="Subtree" otherRequiredUserAttributes="sn,givenname,cn" />
</providers>
</membership>
<roleManager defaultProvider="AspNetWindowsTokenRoleProvider" enabled="true" cacheRolesInCookie="true" cookieName=".PeopleDCRole">
<providers>
<add name="LDAPFBARole" type="Microsoft.Office.Server.Security.LdapRoleProvider, Microsoft.Office.Server, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" server="wipro.com" port="389" useSSL="false" groupContainer="DC=Domain, DC=com" groupNameAttribute="cn" groupMemberAttribute="member" userNameAttribute="sAMAccountName" dnAttribute="distinguishedName" groupFilter="(ObjectClass=group)" scope="Subtree" />
</providers>
</roleManager>
and then added above tags in web.config file of both sites(actual site and extended one) and also in Central admin's web.config file. Then in Authentication Provider (Central Adminstration-->Application Management ) changed the authentication type to form and added the provider as well as Role name. But still i'm unable to login using the proper credentials.
Can anyone please tell me, where i am going wrong or i'm missing any step.
Thanks in advance
Reshma