Skip to main content
AI Assist is now on Stack Overflow. Start a chat to get instant answers from across the network. Sign up to save and share your chats.
Filter by
Sorted by
Tagged with
1 vote
2 answers
89 views

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()....
Amir Pashazadeh's user avatar
1 vote
1 answer
308 views

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 ...
Pythorogus's user avatar
1 vote
1 answer
2k views

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....
Alexander's user avatar
  • 3,056
0 votes
0 answers
8k views

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 ...
M A.'s user avatar
  • 949
3 votes
1 answer
3k views

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 ...
holothuroid's user avatar
0 votes
1 answer
637 views

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://...
Sanal M's user avatar
  • 399
2 votes
0 answers
131 views

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....
Jaumzera's user avatar
  • 2,429
0 votes
1 answer
919 views

I have a Spring-Data LDAP repository configured as the following: public interface LdapUserRepository extends LdapRepository<LdapUser> { Set<LdapUser> findByNameLike(String name); ...
Jaumzera's user avatar
  • 2,429