Announcement

Collapse
No announcement yet.

LDAP authentication against Novell NDS

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • LDAP authentication against Novell NDS

    I am trying to set up open-xchange to authenticate against a Novell eDiretory ldap server.

    In the logs I get
    Code:
    javax.naming.AuthenticationNotSupportedException: [LDAP: error code 13 - Confidentiality Required]
    When I was developing a PHP application against this same ldap server, I received a similar message. The fix was to add the line
    Code:
    ldap_start_tls($ldap);
    How do I enable TLS communication to the LDAP server?

    Jim

  • #2
    Fixed.

    nvm - used ldaps:// instead of ldap, and used port 636 instead of port 389.

    Comment

    Working...
    X