c# - Can repeated failed login attempts using ValidateCredentials cause user to get locked out? -



c# - Can repeated failed login attempts using ValidateCredentials cause user to get locked out? -

i had implement security solution validates user credentials against ldap/ad server.

the code this...

using (principalcontext context = new principalcontext(contexttype.domain, domain)) { homecoming context.validatecredentials(username, password); }

will repeated attempts user login using method, cause business relationship locked out based on ad/ldap rules?

thank you, tony.

edit: looking reply know if have handle user lock out or if auth server me.

yes, if application has bad pw information, a/d lock user out. great illustration of happening in practice windows services running on user accounts...user changes pw , service isn't updated , user locked out.

c# .net authentication active-directory ldap

Comments

Popular posts from this blog

iphone - Dismissing a UIAlertView -

c# - Can ProtoBuf-Net deserialize to a flat class? -

javascript - Change element in each JQuery tab to dynamically generated colors -