ldap

Cannot get audiences to work with LdapRoleProvider

Here's a little background. I have a publishing SharePoint site set up that allows self-provisioning accounts. I'm using ADMembershipProvider, along with the LdapRoleProvider. When user's create an account, they are automatically added to a default AD group, which is already added to the built in Visitors SharePoint group. So once the us...

Autocomplete on a LDAP Search form

Hi everyone, I'd like to know whether it's possible to implement autocompletion on a search form which is querying a LDAP directory. I'm creating a small widget that allows users to look for people in the LDAP directory and then display information such as phone number etc. There's a lot of people in the directory, so it would be nice...

Java LDAP password authentication

The below search term seems to return match if a user simply exists in the active directory: NamingEnumeration<SearchResult> ne = dirContext.search( baseDN, userObjectQuery, new String[] { userName }, SearchControls) The userObjectQuery is ...

Is it possible to 'directly' connect to LDAP using a smartcard for an alternate user to that logged in?

We have a requirement to get information from specific users on an LDAP directory based on a Smartcard being presented. The application is already running under an AD user account, but using that users access to LDAP will not have sufficient access to the specific users data. We have stumbled through a few parts of LDAP APIs and not ha...

How does ActiveDirectory cross-domain trust carry over to an LDAP query?

I am using LDAP inside Plone running behind Apache on RHEL5 to authenticate users against ActiveDirectory. This worked great until we implemented cross-domain trust. Now the LDAP client doesn't know how to authenticate against the other trusted domains so our other users cannot use the web service. Is there a nice way for the standard L...

Problem authenticating user for Subversion using Apache and Ldap

I'm trying to use Ldap authentication for a Subversion repository, accessed via Apache. Whatever I try, Apache generates the following error msg - authentication failed; URI /repos/branches/my-branch [ldap_search_ext_s() for user failed][Operations Error] I've used the AD explorer from Sysinternals to connect to my AD server, and can s...

Group information for Microsoft COM Principal

Java programmer in a COM world, apologies in advance if the terminology isn't quite right. My Java app is going to receive a message from a COM component written by some folks who are COM developers. They want to include in the message some Principal information. On the basis of that information I'm going to make an authorisation decisi...

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 [org.apache.directory.shared.ldap.entry.DefaultServerAttribute] - ERR_04450 The value {0} is incorrect, it hasnt been added [21:07:27] ERROR [org.apache.directory.server.Service] - Cannot start th...

Modify LDAP PhoneNumber and IPPhone attribute using C#

I have a .csv file with EmployeeNumber, TelephoneNumber, IPPhone Number listed in a text file I need a way to loop thru all the records in the text file and modify the 2 phone attributes in LDAP please help. This is totally frustrating ...

Query all the users in a system with LDAP

I am using ruby's net/ldap library for this problem but in reality the driver language shouldn't really matter. I need to find a way to be able to get all the users from a system and find out which users do not have emails assigned to the account. Is it possible? I can connect to and even create new records through LDAP, and can return...

Error enumerating users in LDAP

I am getting the following error when trying to enumerate users in LDAP(Lightweight Directory Access Protocol). I have verified my connection string to the server (LDAP://domainname). The server is of course online and operational. Error Message: Server is not operational Stack Trace [2264] System.Transactions Critical: 0 : [2264] <T...

Is it possible to do LDAP authentication with eDirectory from Java application?

I have to implement LDAP authentication with eDirectory in Java application. I guess some of you have tried this solution. Can you share your ideas and if possible sample code? ...

What is the relationship between OpenLdap and Novel eDirectory?

What is the relationship between OpenLdap and Novel eDirectory? ...

Administrative Limit Exceeded During C# LDAP Search

I am trying to do a LDAP Search however I keep getting the following error: Unhandled Exception: System.Runtime.InteropServices.COMException (0x80072024): T he administrative limit for this request was exceeded. at System.DirectoryServices.SearchResultCollection.ResultsEnumerator.MoveNext () at System.DirectoryServices.DirectoryS...

Windows LDAP Authentication in C++

I am currently trying to authenticate users in a c++ application in Windows. I need to display a dialog for username and password and verify that they are an authenticated user on the Windows machine. Are there any libraries that allow for this functionality or a good way to go about it? ...

I have create a user account with "user password type: Crypted Password" is there any way I can script

I have create a user account with "user password type: Crypted Password" is there any way I can script it to "user password type: open directory" I've use perl-ldap to create user account but I don't know how to change user password type to open directory, is there any way to do that? USING APPLESCRIPT, PERL BASH....etc? thanks ...

How do I pull information from an LDAP server using JavaScript?

I have the LDAP server hostname and the search base, but have not been able to find any way of using that information with javascript. this is to be used in a windows sidebar gadget. ...

Using StartTLS with Perl-LDAP

Hi, I'm trying to use Net::LDAP in Perl to do LDAPS authentication against my Server 2008 Active Directory and I'm having a hard time getting server verification to work. It works if in start_tls I useverify=> 'none', but this is not so great. When I use verify => 'require' (which is preferable), I get this error: SSL connect att...

Directory Services, Search all available providers.

Hello, I have the following method used for searching for a User Group either on the local computer (done first) or in the Current Forest. public string FindUserGroup(string group) { //Search local computer using (DirectorySearcher searcher = new DirectorySearcher(new DirectoryEntry())) { searcher...

How to retrieve user info fra a Active Directory Security Group using LDAP and PHP

As you can see below I'm not getting any user info when I do a LDAP search to the security group. I want to use the $_SERVER[remote_user] to check if the user is a member of this group. I would also like to retrieve the info of this user and update the sql database with it. Is this possible? $dn = "CN=Intra,OU=Common Security Groups,DC...