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

UnboundID LDAP SDK bind using current user's windows credentials

Is is there a way to retrieve the current user's login credentials from a windows machine and use them to bind an LDAP connection using UnboundID's LDAP SDK? I need to avoid asking for the user's credentials or storing any credentials in the…
Dragonator
  • 11
  • 2
0
votes
1 answer

UnboundID LDAP DIGEST-MD5 binding cause NPE

I'm getting the following error when I try to bind using DIGEST-MD5 against ApacheDS using UnboundID LDAP SDK. I already tested the connection using simple bind with UnboundID and Apache Shiro so the ApacheDS is working. LDAPException(resultCode=82…
MooCow
  • 367
  • 2
  • 6
  • 24
0
votes
4 answers

How to preserve LDAP bind user connection after a user authentication?

I have started to use UnboundID to implement the authentication against LDAP. I implemented the authentication as following: Connect to LDAP ldapConnection = new LDAPConnection(host, port, bindUserDN, bindUserPassword); Search user…
Michael
  • 10,063
  • 18
  • 65
  • 104
0
votes
1 answer

Connecting to LDAP server using UnboundID , Constructor not matching documentation example

I've working on implementing UnboundID in-memory ldap server for one of our applications but right from get go i ran into an issue: I need to be making a connection to our production server once in order to get the schema using : Schema…
ke3pup
  • 1,835
  • 4
  • 36
  • 66
0
votes
1 answer

InMemoryDirectoryServer, processing requests (bind,modify,etc.)

I'm using InMemoryDirectoryServer from UnboundID SDK. How do I process ldap requests from ldap client? Here's code I found (at How to get DN and password with UnboundID): public class MyLDAPListenerRequestHandler extends LDAPListenerRequestHandler…
Igor Delac
  • 175
  • 2
  • 9
0
votes
1 answer

how to listen ldap client requests on port 636 with unboundid ldap listener

I have created a test environment. I have one ldap client, ldap listener (as a ldap proxy) and a ldap server. Ldap client sends ldap requests to ldap proxy on port 389 (SSL). Ldap proxy decodes the ldap requests and forwards them to the ldap server…
0
votes
1 answer

Android : Runtime error when using Unboundid LDAP SDK

I downloaded UnboundID LDAP SDK and imported it to my Eclipse Android project. It make use of existing LDAPClient supplied with the SDK. Build was successful. However, when I attempt to launch the application, it gives below run-time error and…
user1829067
  • 143
  • 1
  • 1
  • 6
0
votes
1 answer

Non-unique ldap attribute name with Unboundit LDAP SDK

I am attempting to retrieve objects having several attributes with the name from netscape LDAP directory with LDAP SDK from Unboundit. The problem is that only one of the attributes are returned - I am guessing LDAP SDK relays heavily on unique…
0
votes
1 answer

How to enable Virtual ListView Control for OpenLDAP server?

I'm trying to use UnboundID's LDAP SDK to fetch contacts present on an LDAP server. I'm using the VirtualListView(VLV) Control along with Server-side sort in my code and this code works perfectly fine when I tested with a LDAP server configured in…
Kiran Parmar
  • 788
  • 9
  • 26
0
votes
3 answers

LDAP Search disconnecting when connecting via SSL to IBM Tivoli Directory

I am working on an application that has LDAP connectivity. We have, up until now, used only the Open JLDAP libraries to perform LDAP searches and authentication. We have many clients who use this successfully, connecting to Active Directory and…
Sprooose
  • 504
  • 1
  • 6
  • 17
-1
votes
1 answer

Could I rely that PrimaryGroupToken is immutable?

Based on my investigtaion there are 2 things: PrimaryGroupId from User side PrimaryGroupToken operational attribute from Group side User references to group PrimaryGroupToken operational attribute using field PrimaryGroupId There are 2 ways to to…
-1
votes
1 answer

Create pool of multiple SSL connections

I have created secure LDAP connection following this example using unboundid SDK. I can create LDAPConnectionPool for unsecured servers using following code. LDAPConnectionPool connectionPool = new LDAPConnectionPool(serverSet, bindRequest,…
Muhammad Imran Tariq
  • 22,654
  • 47
  • 125
  • 190
-1
votes
1 answer

how to get UnboundID execution error on async calls?

How can I listen to error when running async actions? e.g "no connection" or error in query (if there is such a thing) I am running the following: create a connection pause the program disconnecting network cable running asyncSearch the search…
ozma
  • 1,633
  • 1
  • 20
  • 28
-2
votes
1 answer

is there any way to insert empty value to attribute in sun one LDAP using java

please help me to get any possible was to insert empty values in LDAP using java/sample LDAP script. i have referred many cases but i didn't find any feasible solution . Thanks in Advance ..
-4
votes
1 answer

installing LDAP sdk for java in eclipse

Suggest me the procedure to install unbound LDAP sdk for java(eclipse) to run in android application.
user1398452
  • 7
  • 1
  • 3
1 2 3
13
14