Re: Unable to update the password



Hello Russ,

where do you store the AzMan store? In ADAM?

if yes - is SSL enabled?

does the behaviour change if you use the original provider?

---------------------------------------
Dominick Baier - DevelopMentor
http://www.leastprivilege.com

When I call Roles.IsUserInRole( user.UserName, "WholeCompany" ) I get
the error "Unable to update the password. The value provided as the
current password is incorrect". I'm not exactly sure where I am going
wrong.

this is my web.config
<roleManager
defaultProvider="WindowsProvider"
cacheRolesInCookie="true"
cookieName=".RussoundRoles"
cookieSlidingExpiration="true"
domain="russound.com"
enabled="true">
<providers>
<clear />
<add name="WindowsProvider"
type="Russound.Membership.RussRoleProvider"
connectionStringName="roles.russound.com"/>
</providers>
</roleManager>
and the class RussRoleProvider is currently only
public class RussRoleProvider : AuthorizationStoreRoleProvider
{
}
so I'm basicly just calling the AzMan role provider right now.

Please help, I'll post additional code if necessary.

Thanks!



.