I'm trying to integrate my program with LDAP. I have an Active Directory server here, which apparently speaks LDAP. I want to see what's on the server before I go off trying to debug my own code. I found a program called jxplorer which claims to be able to talk to LDAP servers.

However, I can't seem to make it work. I'm using settings:

  • Host: (IP address of my AD server)
  • Port: 389
  • Protocol: LDAPv3
  • Base DN: OU=MyCompany,DC=domaincontroller,DC=local (a string I got from somebody else at my company who's written some LDAP code here before)
  • Level: User+Password
  • User DN, Password: (my user name and password on this Exchange server)

The error I'm getting is:

javax.naming.AuthenticationException: [LDAP: error code 49 - 80090308: LdapErr: DSID=0C090334, comment: AcceptSecurityContext error, data 525, vece ]

The other LDAP dude here says 525 is "user not found", and hypothesizes that perhaps the user name needs to be specified in "LDAP nomenclature".

Does anyone know how to connect to AD with jxplorer?

link|improve this question

54% accept rate
feedback

1 Answer

Figured out the way: it's not your user log-in. It's an LDAP DN like:

CN=My Name,OU=My Company,DC=server,DC=local
link|improve this answer
1  
Be aware that your login name in AD is sAMAccountName usually. So ken. Whereas your CN depends on how the person creating you typed in the display name at create time. That might be Ken Smith or Smith, Ken or Ken J. Smith or actually anything they like. (Also recall that periods and commas need to be escaped with a backslash, so it might Smith\, Ken J\. as the value. – geoffc Feb 28 '11 at 18:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.