Hi
I would like check (validate) user name and password at active domain.
I found FM LDAP_SIMPLEBIND.
When used LDAP_SIMPLEBIND to validate user name and password at domain, I got error message (CONFIG_ERROR: Error in the configuration in the SAP system (for example, a non-existent LDAP server ID was specified).
Is in the SAP some FM only for validate user name and password without configure LDAP in SAP or some next unnecessary things?
In C# is simple code without some configuration. Only:
using(var context =newPrincipalContext(ContextType.Domain,"mydomain")){
return context.ValidateCredentials(username, password);}
Thank you