Search found 44 matches: ldap

Return to advanced search

Re: España: Normativa sancionadora sistemas informáticos

... libcurl/7.54.0 OpenSSL/1.1.0e zlib/1.2.11 WinIDN libssh2/1.8.0 nghttp2/1.21.1 Protocols: dict file ftp ftps gopher http https imap imaps ldap ldaps pop3 pop3s rtsp scp sftp smtp smtps telnet tftp Features: AsynchDNS IDN IPv6 Largefile SSPI Kerberos SPNEGO NTLM SSL libz TLS-SRP HTTP2 HTTPS-proxy ...
by paquitohm
Tue Oct 08, 2024 11:43 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: España: Normativa sancionadora sistemas informáticos
Replies: 331
Views: 53367

Re: FW user login to authenticate from windows active directory

Is this code what we are looking for ?

https://wightideas.org/2014/06/25/excel-ldap-authentication/

We could easily adapt it to Harbour and FWH
by Antonio Linares
Thu Jun 24, 2021 2:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW user login to authenticate from windows active directory
Replies: 31
Views: 10743

Re: Application security and Code review

Hi Rick!, If your software has LDAP integration this is an added value. Maybe there are companies that want or do not want to activate it, but in any case it's a plus in security. I've been using LDAP connections for some time and I even ...
by Carles
Mon Oct 16, 2017 9:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Application security and Code review
Replies: 15
Views: 5427

Re: Application security and Code review

Cristobol I don't know .. LDAP has been around for a long time and during my discussions with the IT person he does understand what I am doing ... however wants to bring in a Security Company to test my software for any possible penetration ...
by Rick Lipkin
Sat Oct 14, 2017 2:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Application security and Code review
Replies: 15
Views: 5427

Re: Application security and Code review

... is adding value at my application to add new functionality to the software to be able to tap into a resource that already exists. I have used this LDAP module in other applications to get First Name, Last Name and Userid to populate a list box to make it easy to populate Employee information into ...
by Rick Lipkin
Sat Oct 14, 2017 1:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Application security and Code review
Replies: 15
Views: 5427

Application security and Code review

... this is a large Agency they use Microsoft networking with Active Directory, As a VERY nice enhancement to the application, I incorporated some LDAP code to open a connection to Active Directory .. query AD for ( only ) First name, Last Name, and Userid to populate xBrowse as a look up table ...
by Rick Lipkin
Wed Oct 11, 2017 2:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Application security and Code review
Replies: 15
Views: 5427

Re: Need CURL syntax with fivewin using HBCURL LIB?

... hb_bitShift( 1, 4 ) #define HB_CURLPROTO_SFTP hb_bitShift( 1, 5 ) #define HB_CURLPROTO_TELNET hb_bitShift( 1, 6 ) #define HB_CURLPROTO_LDAP hb_bitShift( 1, 7 ) #define HB_CURLPROTO_LDAPS hb_bitShift( 1, 8 ) #define HB_CURLPROTO_DICT hb_bitShift( 1, 9 ) #define HB_CURLPROTO_FILE hb_bitShift( ...
by ADutheil
Tue Nov 01, 2016 3:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Need CURL syntax with fivewin using HBCURL LIB?
Replies: 10
Views: 5459

Re: FW user login to authenticate from windows active directory

... oDSO, oU, lError              default cDNSDomain := "DC=pdvsa,DC=com"         TRY            oRootDSE := GetActiveObject("LDAP://RootDSE")         CATCH            oRootDSE := CreateObject("LDAP:",cUserID,cPassword)         END         If empty( ...
by hebert_j_vargas
Mon Nov 23, 2015 3:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW user login to authenticate from windows active directory
Replies: 31
Views: 10743

Re: FW user login to authenticate from windows active directory

... := "DC=pdvsa,DC=com"         TRY            oRootDSE := GetActiveObject("LDAP://RootDSE")         CATCH            oRootDSE := CreateObject("LDAP:",cUserID,cPassword)  ...
by hebert_j_vargas
Fri Nov 20, 2015 3:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW user login to authenticate from windows active directory
Replies: 31
Views: 10743

Re: FW user login to authenticate from windows active directory

Thank's Rick, I already tested your procedure, It worked fine, but what I need is to verify the user by valildating user and password from LDAP services, What I've found is has something to do with xharbour and ole issue, OLE can't find "LDAP".

Ragard's
by hebert_j_vargas
Wed Nov 18, 2015 1:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW user login to authenticate from windows active directory
Replies: 31
Views: 10743

Re: FW user login to authenticate from windows active directory

To All These are my modifications from the original LDAP code .. I use this routine to pull AD information for a selected User : #Include "FiveWIn.Ch"#Include "xBrowse.Ch"#include "ado.ch"#define ADS_SCOPE_BASE      0#define ...
by Rick Lipkin
Wed Nov 18, 2015 1:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW user login to authenticate from windows active directory
Replies: 31
Views: 10743

Re: FW user login to authenticate from windows active directory

Thanks Herbert,

but with that change

Error description: Error TOleAuto/-1 CO_E_CLASSSTRING: TOLEAUTO:NEW
Args:
[ 1] = C LDAP://
[ 2] = U
[ 3] = U

in line

oRootDSE := CreateObject("LDAP://")

Thanks in advance !

Regards,
by Baxajaun
Wed Nov 18, 2015 10:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW user login to authenticate from windows active directory
Replies: 31
Views: 10743

Re: FW user login to authenticate from windows active directory

Hi Herbert, here in line 29: oRootDSE := CreateObject("LDAP://",cUserID,cPassword) Error description: Error TOleAuto/-1 CO_E_CLASSSTRING: TOLEAUTO:NEW Args: [ 1] = C LDAP:// [ 2] = U [ 3] = C FPGRANDE Thanks in advance. Regards Thank's Baxajaun, ...
by hebert_j_vargas
Tue Nov 17, 2015 6:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW user login to authenticate from windows active directory
Replies: 31
Views: 10743

Re: FW user login to authenticate from windows active directory

Hi Herbert,

here in line 29:

oRootDSE := CreateObject("LDAP://",cUserID,cPassword)

Error description: Error TOleAuto/-1 CO_E_CLASSSTRING: TOLEAUTO:NEW
Args:
[ 1] = C LDAP://
[ 2] = U
[ 3] = C FPGRANDE

Thanks in advance.

Regards
by Baxajaun
Tue Nov 17, 2015 11:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW user login to authenticate from windows active directory
Replies: 31
Views: 10743

Re: LDAP Query to get Userid and Full name from an AD Domain

Gale

I saw this code in the forum but could not get it to work .. your code compiled and ran great .. I can definitely massage this code and get what I am looking for ..

Thank You!

Rick Lipkin
by Rick Lipkin
Fri Sep 25, 2015 9:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: LDAP Query to get Userid and Full name from an AD Domain
Replies: 2
Views: 503
Next

Return to advanced search