1

I want to import a ldif file in my LDAP so i have this error

javax.naming.directory.SchemaViolationException: [LDAP: error code 65 - NDS error: no such class (-604)]; remaining name 'o=test'

Thx;

geoffc
  • 4,030
  • 7
  • 44
  • 51
Mercer
  • 9,736
  • 30
  • 105
  • 170

1 Answers1

1

eDirectory error -604 means the objectClass you specified probably has a typo. (601 is object not found, so the DN is wrong. 609 is Missing Mandatory. 613 is Syntax Violation).

I would suggest that you show the LDIF file you are using so we can try to figure out what you have going on.

geoffc
  • 4,030
  • 7
  • 44
  • 51