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
1
vote
0 answers

Active Directory LDAP password change: insufficient access rights

I need to write a program that let's an authenticated user to change its password on Active Directory at Windows Server 2003 functional level. By requirements of our security manager my program must use LDAP, but it can't bind with an administrator…
1
vote
1 answer

How to add an attribute to an LDAP schema

I am trying to add a new attribute named sAMAccountName to an already existing LDAP schema definition which is read by IM-LDAP using UnboundID LDAP SDK. I have added an attributeTypes entry and sAMAccountName to matchingRuleUse. attributeTypes: (…
Serg M Ten
  • 5,568
  • 4
  • 25
  • 48
1
vote
0 answers

java.lang.SecurityException: sealing violation: package com.unboundid.ldap.sdk is sealed

I am deploying a WAR file to remote server, and getting below security exception: java.lang.SecurityException: sealing violation: package com.unboundid.ldap.sdk is sealed The same WAR file is working fine in local environment using Tomcat8. Please…
Ajay
  • 11
  • 1
1
vote
2 answers

Active Directory. Persistent Search or Entry Change Notification

I want to get changes for user entities from active directory(AD) with UnboundID LDAP SDK. Does AD support Persistent Search or Entry Change Notification by default or I must to do any settings? Thanks in advance
nikelyn
  • 518
  • 3
  • 13
1
vote
1 answer

AUTHENTICATE 2 LDAP USER IN ITOPS

I have some LDAP users in iTops, and i want to login with all of users in iTops. But i have an error like that "user not found in LDAP". Which folders that i have to change ? So i can login with all LDAP users. I appreciate for your responses, all…
1
vote
0 answers

LDAPException invalid credentials with UnboundId

I have an ldap server which I'm able to connect to through LDAP Apache Directory Studio. The settings in the studio are: Hostname: ldap.company.com Port: 389 Encryption Method: No Encryption Provider: Apache Directory LDAP Client API Authentication…
lalli
  • 6,083
  • 7
  • 42
  • 55
1
vote
1 answer

Spring Embedded LDAP does not bind hashed passwords

I'm trying to implement Spring Boot LDAP Security, and I'm using the unboundid-ldapsdk embedded LDAP server for testing (like the tutorial here). I configured the web security to use LDAP Binding for authentication, and tested successfully using…
Kasra Ferdowsi
  • 574
  • 5
  • 16
1
vote
1 answer

JUnit Rule and cdi

I'm not really familiar with cdi or or JUnit Rule (in fact I've just discovered them) but I try to test my ldap api with the embedded-ldap-junit library (based on UnboundID LDAP SDK) following this post. I precise that my api is not based on…
OphyTe
  • 68
  • 9
1
vote
1 answer

UnboundID LDAP memberof-overlay

I'm trying to get the dynamic memberOf attribute to work in my in-memory-ldap-server. I'm using the standard edition of UnboundID. I tried with the following .ldif-files if it is activated by default: base.ldif: dn: dc=example,dc=com objectclass:…
Jérôme
  • 1,254
  • 2
  • 20
  • 25
1
vote
3 answers

Docker container exits immediately despite Service Running

Similar questions seem to exist but none of them with clear answer (at least not to me). I've an LDAP Server inside a container which comes with bin/start-ds file. The problem is the container exits as soon as the shell script is finished. I'd…
1
vote
0 answers

How to fetch ldap server current timestamp?

I am using unboundid api in our application, I want to fetch ldap server(OpenLDAP/Active Directory) current timestamp. Is it possible to fetch ldap server current timestamp using unboundid api? Thanks in advance.
1
vote
4 answers

How to get decoded objectGUID from Active directory using UnboundID LDAP SDK in java?

Scenario 1: I am able to obtain objectGUID from active directory but it's not in readable string format. Also we need to store it in db with decoded format. With the given example in the provided link…
1
vote
1 answer

Change user password in LDAP using unboundid

I'm trying to change the user password in LDAP, using the code below, I'm not the admin of the LDAP, so I make the connection with a user that have ou=systemusers, it can create users, and add the users to a group. I know the old password for the…
anquegi
  • 11,125
  • 4
  • 51
  • 67
1
vote
0 answers

MongoClient (from mongoDB Api) equivalent in LDAP

I need to provide a pool of connections to a LDAP db, I'm using unbound the problem is that in the structure that we are using, I need to create one instance of the connection and this instance must manage the resource usage limits as max…
anquegi
  • 11,125
  • 4
  • 51
  • 67
1
vote
1 answer

How to use unboundid debug log and log4j

need help in integrating unboundid debug logs in log4j. I understand that Debug class is used to get the unboundid logs , but want to have them in log4j files
Avishek
  • 390
  • 4
  • 22