Hello,
We have Client-Server applications where we want the users log in with their Active Directory account. How can we validate username and password against Active Directory? We are using PowerBuilder 2017 R2.
Hello,
We have Client-Server applications where we want the users log in with their Active Directory account. How can we validate username and password against Active Directory? We are using PowerBuilder 2017 R2.
library "Advapi32" alias for "LogonUserA;Ansi
What does it mean?
Can you help me, please?
Thanks.
Its an "external" call to an MS-Windows API function. The proper declaration though for Appeon PB should be ...
FUNCTION long LogonUser (string username, string domain, string password, long logontype, long logonprovider, ref ulong hToken) library "Advapi32" alias for "LogonUserW"
Regards ... Chris