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.
Re: Unable to update the password ... Dominick Baier - DevelopMentor... The value provided as the current password is incorrect"....public class RussRoleProvider: AuthorizationStoreRoleProvider ... so I'm basicly just calling the AzMan role provider right now. ... (microsoft.public.dotnet.framework.aspnet.security)
Re: Securing static files ...Dominick Baier - DevelopMentor... they are kicked back to the login page. ... The user may log in with other credentials. ... (microsoft.public.dotnet.framework.aspnet.security)
Re: How to determine if the logged on user is in a group ...Dominick Baier - DevelopMentor... I found that you to reboot the SERVER after you create a new group and put users in it so that the new group and the users appear in the whoami list on the server. ... although he is a member of these groups. ... (microsoft.public.dotnet.security)
Re: How to call Web Service Securely ... which .net version - which type of authentication (username/password against a db??) ...Dominick Baier - DevelopMentor... make a web method via dialup to my IIS Web Service.... (microsoft.public.dotnet.framework.aspnet.security)