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

Android studio - Failed to connect to LDAP server

I want use LDAP in android studio, I use UnboundID LDAP SDK for Java in the latest version. I use the command: LDAPConnection ldap = new LDAPConnection("xxx.xxx.xx.xx", 389,"uid=guest3,ou=Users,dc=gal,dc=local", guest3); Connection details: host:…
galch
  • 35
  • 6
0
votes
1 answer

Unable to delete or modify PGP keys from Symantec Encryption Management Server using LDAP

I want to delete or modify PGP public keys from SEMS server using LDAP. For these purpose i am using LDAP SDK from UnboundID and Didisoft PGP java library. When i am executing the codes both connection.modify(request) and connection.delete(request)…
Prashant Kumar Sharma
  • 1,120
  • 1
  • 11
  • 21
0
votes
1 answer

ds389 [FreeIPA] : Exporting Schema?

Are there any tools out there to export the data and along with schema from a 389 directory server ? So far, I tried the db2ldif which do not export the entire schema. (looks like or may be I am wrong here..)
0
votes
1 answer

Get reason for Password Policy Violation from Red Hat Directory Server via UnboundID LDAPSDK

I'm trying to extract a reason why a certain password is denied, using UnboundID LDAPSDK and connecting to Red Hat Directory Server. However, after performing the following request: PasswordModifyExtendedRequest passwordModifyExtendedRequest = new…
Michael Bláha
  • 383
  • 4
  • 9
0
votes
2 answers

UnboundID: how to configure multiple TLS protocols for LDAP over SSL connection?

We use UnboundID (unfortunately the old version that should be upgraded soon). I want to configure multiple TLS protocols for LDAP over SSL connection: TLSv1, TLSv1.1, TLSv1.2. Unfortunately,…
Michael
  • 10,063
  • 18
  • 65
  • 104
0
votes
0 answers

ldap_error 81, Server connection lost

I have deployed OpenDJ application on one of the instances and written a java based application as well to access user details from OpenDJ using unbound LDAP SDK. All the things are up and running and working as well. The issue occurs when the…
Waheed
  • 1,835
  • 15
  • 21
0
votes
0 answers

Exception occured org.osgi.framework.BundleException while deploying custom plugin in OAM(Oracle Access Manager)

I'm developing custom plugin for OAM using unboundid-ldapsdk. I'm not able to activate this plugin in OAM as it throws below error This is manifest file Manifest-Version: 1.0 Bundle-Version: 10 Bundle-Name: CustomPlugIn …
0
votes
1 answer

unboundid ldap SDK how to get all users and exclude a department

I have sample code Filter searchFilter = Filter.create("(sAMAccountType=805306368)"); SearchRequest searchRequest = new SearchRequest(advanceBaseDnTxt.getText(), SearchScope.SUB, searchFilter, …
Mert Serimer
  • 1,217
  • 2
  • 16
  • 38
0
votes
1 answer

LDAP Exception - Invalid value #0 per syntax

I am new to LDAP and Unbound ID SDK for Java and I have a problem with adding user roles from my application to my LDAP server (the roles are grouped in ou=roles,dc=test,dc=com and as part of the ou=roles subtree, each role should be an entry of…
Nash
  • 1
  • 1
  • 2
0
votes
1 answer

Spring boot security against AD with UPN different than domain name

Users in my Active directory logs on to their accounts with either e-mail address 'firstname.lastname@company.no' or full name 'firstname lastname'. The AD-domain is 'company.local'. Problem is that when Spring does it's LDAP-query it searches for…
0
votes
0 answers

How to impose LDAP IP restrictions?

I am new to Lightweight DA services and for my task I need to be able to add new entries to an LDAP server.However, only certain(configurable) IPs (application instances) should be allowed to perform the add operation. What is the best way to…
Nash
  • 1
  • 1
  • 2
0
votes
0 answers

UnboundID LDAP SDK - Connection pool operations vs Async

I'm trying to figure out what is the best way to use UnboundID LDAP SDK in system with high TPS (30k - 50k). Most I have found around internet suggest to use multi-threading together with operation directly on connection pools (link1, link2), for…
0
votes
1 answer

Search with paged control throws LDAPSearchException

I'm using unboundid-ldapsdk-3.1.1 and trying to iterate through entries using SimplePagedResultsControl. Here is the snippet that I'm using: ... searchRequest = new SearchRequest(dn, scope.getLdapSearchScope(), filter); ASN1OctetString…
eparvan
  • 1,639
  • 1
  • 15
  • 26
0
votes
2 answers

Changing LDAP users password

I have established a LDAP Connection using admin credentials like as shown below LDAPConnection connection; try { connection = new LDAPConnection("example.domain.com", 345); BindResult auth =…
Alex Man
  • 4,746
  • 17
  • 93
  • 178
0
votes
1 answer

unboundId ldap limit search

I must get 200 users from my ldap school but the problem is I can't get more than 200 users else i am getting exception : String filter = "uid=G26274"; String[] arrayFilter = filter.split("="); Filter filters =…
gaby_dev
  • 9
  • 1