Hi,
It seems LdapTemplate operations are NOT doing any automatic type conversion from java type to ldap types and vice-versa.
For example if I use
I was expecting the framework to convert the Boolean true value to String "TRUE" in the operation, but it doesn't seem so. Is there anyway to get type conversion working with Spring Ldap?Code:DirContextOperations.setAttributeValues("key", new Boolean(true))
Is the client code expected to convert the value to correct String type before doing a LdapOperation? can org.springframework.ldap.odm.typeconversion.impl be used?


Reply With Quote
