문제

I have an application in Java, using Spring LDAP and Java Naming. The problem is when I delete a branch that contains entries. example:

root
|
|----A
|    |
|    |--A1
|       |
|       |----A2
|            |
|            |---A3  
|
|
|-----B

When I try to delete the branch A, sends me the following exception:

[LDAP: error code 66 - subordinate objects must be deleted first]

Please help me! thank you!

Greetings.!

도움이 되었습니까?

해결책

If you are using Spring LDAP, you should be able to accomplish this using LdapTemplate#unbind method that takes 'recursive' argument:

http://docs.spring.io/spring-ldap/docs/2.0.2.RELEASE/apidocs/org/springframework/ldap/core/LdapTemplate.html#unbind(javax.naming.Name, boolean)

다른 팁

Unless the LDAP server supports the TreeDelete extended operation or request control, whatever it is, and you can find a Java implementation of the client side code, you will have to traverse the subtree and delete the entries bottom-up.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top