Questions tagged [unboundid-ldap-sdk]

The UnboundID LDAP SDK for Java is a fast, powerful, user-friendly, and completely free Java API for communicating with LDAPv3 directory servers.

The UnboundID LDAP SDK for Java is a fast, powerful, user-friendly, and completely free Java API for communicating with LDAPv3 directory servers.

Home page: https://www.unboundid.com/products/ldapsdk/

Mailing list: ldap-sdk-discuss@lists.sourceforge.net

Maven download from the central repository:

<dependency>
    <groupId>com.unboundid</groupId>
    <artifactId>unboundid-ldapsdk</artifactId>
    <version>2.3.4</version>
</dependency>
210 questions
0
votes
1 answer

Anonymous Bind using UnboundID LDAP sdk

I have a JAVA application that uses UnboundID LDAP SDK to connect and to authenticate to a LDAP local server. The server is a Windows Server 2008 R2 with Active Directory and It's configured to NOT allow anonymous authentication. But if i try to…
Jose Victor
  • 350
  • 1
  • 5
  • 13
0
votes
1 answer

Find Old DN of Deleted Users in Active Directory using Unboundid Api

I have used ActiveDirectoryDirSyncControl for Active Directory server for Sync Process for finding added , modified and deleted users but there is a problem in deleted users. In deleted user Before deleting the user's DN comes…
Saxena Shekhar
  • 219
  • 6
  • 22
0
votes
2 answers

Sending LDAP request with message ID

Need to send an LDAP search request with message ID set to 0 value (as part of RFC validation testing). Tried the following modified code from apache directory api examples section: import java.io.IOException; import…
0
votes
1 answer

UnboundID, LDAP jdk migration

How can I call a SSL connection on a: com.unboundid.ldap.sdk.migrate.ldapjdk.LDAPConnection; ? The following: SSLUtil sslUtil = new SSLUtil(new TrustAllTrustManager()); LDAPConnection ldp = new LDAPConnection(sslUtil.createSSLSocketFactory(),…
ltalhouarne
  • 4,586
  • 2
  • 22
  • 31
0
votes
2 answers

Unboundid sdk search through ContentSyncRequestControl not showing modified entries

I have to search modified (add, delete, modify) entries using ContentSyncRequestControl in Unboundid sdk, but it showing all the entries instate of modified entries. what I have done so far LDAPConnection ldapConnection = null; try { …
0
votes
1 answer

LDAP server vs LDAP sdk

I was reading through various open source ldap's. OpenLDAP - LDAP server UnboundID - LDAP sdk Questions Can someone elaborate the difference between the LDAP server and LDAP sdk ? It would more helpful if i get the answer for differences…
Santhosh
  • 8,181
  • 4
  • 29
  • 56
0
votes
1 answer

Unboundid LDAP vs Netscape LDAP performence gap

I am trying to upgrade a web application made in Java EE, using Tomcat. Till now I have been using the Netscape ldap implementation, and now I am trying to upgrade to Unboundid Ldap. The problem is that the Unboundid implementation has a very high…
hDan
  • 467
  • 4
  • 19
0
votes
1 answer

UnboundID : How to encapsulate processBindRequest return value?

I'm building an LDAP interface for my database. When a client request bind(), it will search in the database and check if it is valid or not. public class Main { LDAPListener listener ; Main() {} public static void main(String[] args)…
0
votes
2 answers

authenticate user in LDAP with email and password

I am new to LDAP API. I am able to connect to a LDAP server and search the user. How would I authenticate a user with email/password using UnboundID LDAP API ? I have not seen any authentication in LDAP which uses email and password to authenticate…
Saxena Shekhar
  • 219
  • 6
  • 22
0
votes
1 answer

LDAP Authentication to AD error code

I have one question, i'm trying to to authenticate to AD via LDAP, and when i put invalid credentials i got exception message like this: LDAPException(resultCode=49 (invalid credentials), errorMessage='80090308: LdapErr: DSID-0C0903A9, comment:…
0
votes
1 answer

Active Directory get Domain Admins in all sub domains

May I know what is the ldap query string to get list of all the Domain Admins? I found that Active Directory has a group called Domain Admin when AD is installed. So, I can query to get all the members of this group. But, I have to provide the DN…
saravanan07
  • 365
  • 2
  • 4
  • 14
0
votes
1 answer

Login using "pre Windows 2000" username to Active Directory

Is it possible to login to Active Directory using the pre Windows 2000 username to Active Directory using Unboundid ldap sdk? The pre Windows 2000 username is DOMAIN\username and an end user may enter it in the login page. If yes, how is possible to…
Michael
  • 10,063
  • 18
  • 65
  • 104
0
votes
1 answer

How to store group member in string Array

I am able to get the result while executing the following code but i want to store member of group in string array but i am not do it. I am new to java can some one help me. the following code System.out.println(" Person Common Name = " +…
0
votes
2 answers

UnboundID LDAP - how to set flags in userAccountControl attribute

i am using UnboundID LDAP SDK for ActiveDirectory management, and i want to create new user. I am able to create connection to ActiveDirectory and add new user with some attributes, but i dont know how to work with attribute userAccountControl.…
user1453857
  • 207
  • 1
  • 3
  • 13
0
votes
1 answer

UnboundID SASL cannot acquire password

Relating to my other question: UnboundID LDAP DIGEST-MD5 binding cause NPE I'm using ApacheDS as the server and UnboundID as the API. I followed the suggested answer and the NPE is gone. However, now I'm getting this…
MooCow
  • 367
  • 2
  • 6
  • 24
1 2 3
13
14