8 questions
1
vote
2
answers
89
views
Cannot read accountExpires attribute from Active Directory with Spring LDAP
I am using Spring Boot/Spring Data Ldap.
When I query users I cannot read accountExpires attribute, even when the property is shown in GetADUser.
I tried something like this:
return readTemplate()....
1
vote
1
answer
308
views
Spring LDAP - multiple bases in one or more request(s)
I need to make a query that will search for all users, located in two different OUs.
For example :
base1: "OU=ou2,OU=ou1"
base2 : "OU=ou3,OU=ou1"
How can I do this with ...
1
vote
1
answer
2k
views
LDAP: error code 21 - XXXActive: value #0 invalid per syntax - spring-data-ldap
I'm using spring-data-ldap with OOM and my own schema containing a boolean property. When I try to store a value in or read a value from openLDAP, I get the exception
javax.naming.directory....
0
votes
0
answers
8k
views
Unable to bind with active directory
I'm new in this domain and trying to bind with active directory using spring ldap client in java. I have already googled this and tried every given solution on internet but it didn't work for me. I'm ...
3
votes
1
answer
3k
views
spring.data.ldap with multiple spring.ldap.urls in application.properties
We use an LdapRepository<MyUser> within a Spring Boot project. The repo is auto-generated with a few additional query methods. We now have a second Active Directory domain server, and would like ...
0
votes
1
answer
637
views
not able to fetch custom attributes from AD using spring-data-ldap
I am connecting to the Active Directory using spring-data-LDAP. I have used domain admin user credentials to connect to the AD. The application.properties configurations are,
spring.ldap.urls=ldap://...
2
votes
0
answers
131
views
Spring-Data-LDAP alternative for "in" query
Is there any alternative for IN queries in Spring-Data-LDAP?
I'm facing a problem in order to retrieve users from an email list:
The Spring-Data query is something like the following:
this....
0
votes
1
answer
919
views
Spring-Data LDAP missing some attributes
I have a Spring-Data LDAP repository configured as the following:
public interface LdapUserRepository extends LdapRepository<LdapUser> {
Set<LdapUser> findByNameLike(String name);
...