I'm doing asp.net, using FormsAuthentication with the AdMembership proivder.

I'm having to manually write a "change password on next logon" screen because it's not nativley supported in the provider.

I call :

if (Membership.Provider.ChangePassword(cpCv.LoginName, cpCv.OldPassword, cpCv.NewPassword))

to validate the user and change the password (but not clear the "on next logon flag")

But it always fails, (I assume becasue membership validation fails when the "Change Password On Next Logon flag" is set.)

What is the easiest way to validate the user, so I can be sure the "old password" and "username" match before resetting the password and clearing the "on next logon" flag?

I've got the resetpassword and clear flag stuff working, it's the validation that's got me stuck.

Also tried this code, If the Reset flag is false, it logs in, if true it fails to log in.

    DirectoryEntry de = new DirectoryEntry( path, "jcsn\\"+AdUserName, AdPassword );

    try
    {
        //Bind to the native AdsObject to force authentication.
        object obj = de.NativeObject;

        DirectorySearcher search = new DirectorySearcher( de );

        search.Filter = "(SAMAccountName=" + AdUserName + ")";
        search.PropertiesToLoad.Add( "cn" );
        SearchResult result = search.FindOne();

        if ( null == result )
        {
            return false;
        }

    }
    catch ( Exception ex )
    {
        throw new Exception( "Error authenticating user. " + ex.Message );
    }

Thanks,

Eric-

link|improve this question

65% accept rate
I don't really have a solution for your question, however take a look at the System.DirectoryServices.AccountManagement namespace, it may allow you to reduce your amount of code and might have a fix for you. – Brent Pabst Apr 7 '11 at 20:47
Thanks! I just posted another question becuase I tried using that namespace and got stuck on authenticating. I'm hopign it'll help becuase it makes it easy to clear the flag and then reset it. – Eric Brown - Cal Apr 7 '11 at 20:50
feedback

1 Answer

There is a function called Membership.Validate. I think your code would look like this:

if(Membership.ValidateUser(txtUserName.Text, txtPassword.Text)) 
{   
    //Proceed with the change 
}

I'm not sure why your call to ChangePassword is failing though--I think ChangePassword might call ValidateUser anyways.

link|improve this answer
if(Membership.ValidateUser(txtUserName.Text, txtPassword.Text)) returns false too.. I think that change password is failing becuase it's calling ValidateUser, which is failing because the AdMembershipProvider does not support changePasswordOnNextLogon and is failing. I think I need a way to authenticate that does not use the provider. – Eric Brown - Cal Apr 7 '11 at 18:26
ChangePAssword Calls validate user, validate user fails when reset is true, it's how AdMembershipProvider is implemented. so this whole approach goes out the window. – Eric Brown - Cal May 5 '11 at 16:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.