neo4j-contrib / neo4j-apoc-procedures

Awesome Procedures On Cypher for Neo4j - codenamed "apoc"                     If you like it, please ★ above ⇧            

Home Page:https://neo4j.com/labs/apoc

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

apoc.load.ldap doesn't work with SSL ?

Raf23 opened this issue · comments

commented

Hello,

The query with SLL connexion (port 636) doesn't work.

image

NON SSL works:
call apoc.load.ldap({ldapHost : "ldapclient.com:389", loginDN : "", loginPW : ""},{searchBase : "dc=ldapclient,dc=com",searchScope : "SCOPE_SUB"
,attributes : ["cn"]
,searchFilter: "(objectClass=*)"}) yield entry
return entry

SSL doesn't work:
call apoc.load.ldap({ldapHost : "ldapclient.com:636", loginDN : "", loginPW : ""},{searchBase : "dc=ldapclient,dc=com",searchScope : "SCOPE_SUB"
,attributes : ["cn"]
,searchFilter: "(objectClass=*)"}) yield entry
return entry

Do you have any idea how to solve this?

Kind regards,

Raphaël