in Education by
I am trying to search an entry on ldap based on the name of the same entry. The search entries that I am getting are similar to this one: CN=nameOfTheUser,OU=firstGroupName,...,DC=domain1,DC=domain2 What I want to do is filter my search to just show the entry with that name because currently I´m getting all of the entries: SearchRequest searchRequest = new SearchRequest(ldapConfig.getBaseDn(), SearchScope.SUB, Filter.createEqualityFilter("objectClass", "person")); I'm using ldap unboundid with springboot. JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
To find "CN=nameOfTheUser,OU=firstGroupName,...,DC=domain1,DC=domain2" or any entry you know the DN is correct, you need something like: SearchRequest searchRequest = new SearchRequest("CN=nameOfTheUser,OU=firstGroupName,...,DC=domain1,DC=domain2", SearchScope.BASE, Filter.createEqualityFilter("objectClass", "person")); You should also consider a READ similar to: LDAPConnection.read("CN=nameOfTheUser,OU=firstGroupName,...,DC=domain1,DC=domain2", java.lang.String[], LDAPSearchConstraints) If you need to find the entry, then a search request similar to: Filter andFilter = new Filter.createANDFilter( Filter.createEqualityFilter("objectClass", "person"), Filter.createEqualityFilter("cn", "nameOfTheUser")); SearchRequest searchRequest = new SearchRequest("new SearchRequest(ldapConfig.getBaseDn()", SearchScope.BASE, andFilter); -jim

Related questions

0 votes
    In a __________ index, an index entry appears for only some of the search-key values. (a) Dense (b) ... from Ordered Indices in portion Indexing and Hashing of Database Management...
asked Oct 10, 2021 in Education by JackTerrance
0 votes
0 votes
    What is the full form of LDAP? What is its application?...
asked May 24, 2021 in Technology by JackTerrance
0 votes
    Are there any specific scenarios to use Liferay search container over Dandelion data tables framework,when Data ... for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jul 8, 2022 in Education by JackTerrance
0 votes
    I made a JQuery function the one deletes the row I selected. I know that the option exist in the DataTables option, but I want to ... }*/ });}); Then, I have the JSON file there:...
asked Jul 3, 2022 in Education by JackTerrance
0 votes
    I made a JQuery function the one deletes the row I selected. I know that the option exist in the DataTables option, but I want to ... }*/ });}); Then, I have the JSON file there:...
asked Jun 19, 2022 in Education by JackTerrance
0 votes
    I'm building a single page application. On the client side I'm using Nuxt.js (which includes Vue. ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 21, 2022 in Education by JackTerrance
0 votes
    Am trying to perform an update and nothing seems to work. It has something to do with my callback ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 11, 2022 in Education by JackTerrance
0 votes
    While looking for a single entry point where penetration testers can test the vulnerability, they use ______ phase of ... questions and answers pdf, mcq on Cyber Security pdf,...
asked Nov 5, 2021 in Education by JackTerrance
0 votes
    Which of the following can be useful for diagnosing data entry errors? (a) hat values (b) dffit (c) ... questions and answers pdf, Data Science interview questions for beginners...
asked Oct 29, 2021 in Education by JackTerrance
0 votes
    Which of the following is used only for data entry and storage, and never for processing? (a) Mouse ... , Database Interview Questions and Answers for Freshers and Experience...
asked Oct 11, 2021 in Education by JackTerrance
0 votes
    I am trying to use design support library. Gradle dependencies are as follows dependencies { compile 'com. ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jul 14, 2022 in Education by JackTerrance
0 votes
    I am trying to use design support library. Gradle dependencies are as follows dependencies { compile 'com. ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jun 30, 2022 in Education by JackTerrance
0 votes
    I am trying to use design support library. Gradle dependencies are as follows dependencies { compile 'com. ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jun 10, 2022 in Education by JackTerrance
...