Tagged Questions

ApacheDS is an extensible and embeddable directory server entirely written in Java

learn more… | top users | synonyms

6
votes
3answers
1k views

Running Apache DS embedded in my application

I'm trying to run an embedded ApacheDS in my application. After reading http://directory.apache.org/apacheds/1.5/41-embedding-apacheds-into-an-application.html I build this: public void ...
2
votes
1answer
103 views

Custom partition in ApacheDS

I am using ApacheDS version 2.0.0-M3 (I not very familiar with how this works). I have created a new partition class, extending AbstractPartition. I am able to create an instance of this class, and ...
2
votes
1answer
66 views

Impersonating a user in LDAP (APacheDS) in Java

I'm working with LDAP (ApacheDS) in Java, I was wondering if it's possible to impersonate a user using the system account. More specifically, I have different groups in LDAP directory, and I need to ...
2
votes
2answers
249 views

LDAP: error code 49 - cannot bind the principalDn

I'm a newbie to ApacheDS.I just created a new partition in ApcheDS. When i try to register my connection factory i get above error..(with OracleAQ ) My code is; // ldap settings ...
1
vote
3answers
136 views

can i use LDAP servers like ApacheDS as a persistence solution for desktop applications?

a fella recommended me to use ApacheDS as a replacement for my database (MySQL) you can find the discussion here i am completely new to LDAP and ApacheDS (actually i had no idea about it yesterday), i ...
1
vote
2answers
236 views

Getting SHA password value from Ldap database(ApacheDs)

I have a ldap database. I'm using inetorgPerson object class. In this class there is userPassword attribute. userPassword values are SHA crypt. I am using javax.naming.directory package to get ...
1
vote
3answers
2k views

Fail to start Apache Directory Server - Error 04450

While I was trying to start ApacheDS 1.5.7 on windows platform, An Error 04450 occurs and the apacheds-rolling.log contains: [21:07:27] ERROR ...
1
vote
2answers
2k views

case insensitive LDAP searches

What't the syntax for performing a case-insensitive match on a 'uid' attribute? If attribute definition matters then how would that be changed? In particular I am using ApacheDS for my LDAP store.
1
vote
2answers
1k views

Importing a schema LDIF and content LDIF on every startup of ApacheDS?

I want my embedded ApacheDS to start up with a fresh schema/content when I run my tests. I tried to import a LDIF with this lines: LdifFileLoader ldifLoader = new ...
0
votes
0answers
25 views

how to create custom attribute in apacheds?

I am trying to add custom attribute in apacheds, I followed the exist attribute and create a new one name 'passwordUpdateTime': But when I wanna add it in my person object, I couldn't find it in ...
0
votes
2answers
55 views

Liferay + CAS + LDAP

I am working on some project involving Liferay Portal, CAS and Apache Directory Server. I am supposed to prepare proof of concept (or disproof) for the following model. 1. Liferay is integrated with ...
0
votes
1answer
127 views

Role-based security implementation in LDAP

I'm working on role-based security implementation in LDAP and Java. Specifically, I have the following objects that I need to represent in LDAP: Users Corporate groups of users - HR, Finance etc. ...
0
votes
0answers
61 views

JNDI lookup gives “NullPointerException” when do lookup for a queue in LDAP

I have successfully registered and retrieved the connection factory object from LDAP server.But when i try to look up for queue from LDAP server it gives NPE. I'm using OracleAQ with ApacheDS.. My ...
0
votes
1answer
103 views

Can't get ApacheDS to load the example data file

In ApacheDS, I'm trying to load the sample LDAP data provided in ldif format and with instructions here. I followed the same pattern I used to load the context record by specifying an ldif file in ...
0
votes
1answer
108 views

ApacheDS 1.5.7 - SASL Configuration

I currently try to setup an ApacheDS instance to test SASL mechanisms. Anyone out there that managed to get SASL in ApacheDS to work? I am looking for a working setup instruction for ApacheDS 1.5.7 ...
0
votes
0answers
374 views

Spring: Embedded LDAP for unit tests

I use the embedded LDAP server (Apache DS) in Spring for unit tests. I configure it like this: <ldap-server ldif="classpath:data.ldif" /> The problem is, that I need to use a custom LDAP ...
0
votes
1answer
271 views

StartTls, ApacheDS Problem

I have been struggling in getting Start Tls to work for my ldap server. I have configured a keystore and password in a spring context file. My configuration seems to work for SSL but Star Tls is ...
0
votes
2answers
214 views

What is a good Ldap ObjectClass to use to store a user and it's membership

I'm trying to create a Ldap schema for our users and groups (using ApacheDS but that should not matter) Currently i have something like this (dc=company, dc=com) - ou : groups - ...
0
votes
2answers
230 views

how to implement a custom partition on ApacheDS 1.5.5?

I'm implementing a custom partition on Apache DS (implementing org.apache.directory.server.core.partition.Partition). I´m able to do searches on my custom partition, however if I want to use a filter ...
0
votes
1answer
587 views

How to create a partition in the root in ApacheDS server programmatically using JNDI/LDAP?

I'm trying to create a new partition in the root of a ApacheDS Lightweight Directory using JNDI/LDAP. I've failed trying to add it using bind and createSubcontext within the root context. I'm able to ...
0
votes
1answer
485 views

Spring Embedded Server

Hey, I'm using spring 3.0.2 and ApacheDS 1.5.5 and I'm trying to run the embedded server using: The content of the user.s.ldif file is : dn: cn=The Postmaster,dc=example,dc=com objectClass: ...
0
votes
1answer
77 views

Is Apache Directory Server 1.5.x stable enough to use for integration testing purposes

I have been trying to locate various dependencies and it seems that various classes have changed packages resulting in broken stuff. eg AbstractServerTest ffrom 1.5.5 doesnt work with all the jars ...
0
votes
1answer
342 views

List the root contexts in LDAP

I would like to list or search the root context(s) in a LDAP tree. I use Apache Directory Server and Java: Hashtable<String, String> contextParams = new Hashtable<String, String>(); ...