ldap

querying ldap to retrieve groups user is member of (in sharepoint)

I'm using Sharepoint in combination with Nintex. The possibility to query the ldap is available via Nintex, and basic querying actions work well! Now I am trying to get an array or collection of the groups the user is member of.. i've tried (&(objectCategory=group)(member=cn={itemproperty:ldapName},dc=MyDomain)) Unfortunately this doe...

Get Current Windows User VB.net

I have tried multiple ways of grabbing the username of a current logged on user in vb.net/asp.net. I am running it on IIS 6 and understand that it will return NETWORK SERVICE for the username. I need to grab the username of the actual windows box log on. I have tried the following code: Returns NT AUTHORITY\NETWORK SERVICE Dim User =...

DirectoryServices.AccountManagement "old" password still validates after password change.

After resetting a users password in Active Directory, if the user tries to log in using their old password, the following code validates as True: Dim up As UserPrincipal = GetAdUser(objContext, arg_strBA, arg_strUsername) If up IsNot Nothing Then Dim valid As Boolean = up.Context.ValidateCredentials( up.UserPrincipalName, arg_...

Modeling Tools that understand both Relational and LDAP

I am looking to do some modeling and would like to have a tool that can capture not only a relational model like ERWIN but also allow us to easily port to LDAP as an option. NOTE: Visio can connect to an existing LDAP server and draw, but does not allow for you to model first and then deploy, unlike its relational capabilities. ...

How to build LDAP integration for my web app?

My company develops and sells a SaaS application that has hundreds of customers. Some of our customers have asked us to support LDAP integration for authenticating user accounts against their existing systems instead of having to create another login account for each of their employees. Seems like this is referred to as Single Sign On (S...

Are most LDAP administrators creating LDIFs by hand?

Are there tools that make the job easier? If command-line only tools exist, then can anyone speculate if there is a market for a GUI tool? For example, you can create a relational database by modeling visually. Should the same notion exist for LDAP? ...

Modifying LDAP schema to support Cardspace and OpenID

I am seeking examples of how others have modified LDAP schemas to support Cardspace and/or OpenID. Links to LDIFs or other documentation is greatly appreciated. ...

How to Authenticate LDAP in .NET

I would like to authenticate username and passwords for my application on a windows operating system with any directory service. For example it could be microsoft active directory, Novell eDirecotry, or SunOne. I already know how to do this code natively for Microsoft Active Direcotry with c#. ( I totally gave up using ADSI and creati...

Does LDAP (or any Ruby client library for LDAP) support batch calls?

I'm thinking no, but hope to be corrected. http://en.wikipedia.org/wiki/Lightweight_Directory_Access_Protocol i.e. i'm simply looking to a batch read of ~1000 users via one query, instead of making ~1000 separate queries. Update: Okay, it helps to read the spec: http://tools.ietf.org/html/rfc2254 : ) ...

Web-based LDAP Browser

Is anyone aware of an "web-based" application that allows developers to browse an LDAP server and view objectClasses and attributeClasses? Ideally I would love something open source that is written in either Java or .NET. ...

How to prevent Duplicate Object creation in ADAM ?

I am testing out using ADAM and the DSML services. I have two ADAM servers, one is a replica of the other and they are Load Balanced. How can you protect duplicate object creation in the ADAM directory? ...

Open Source SPML to LDAP Gateways

I recently ran across Project Keychain and wanted to know if there are any other SPML to LDAP gateways that are open source. Implementation language does not matter. ...

Authenticated Webservice with LDAP

I wrote one webservice in ASP.net. I need to authenticate the webservice with the local network userid and password. I am checking this value using LDAP. How can I make this without minimal coding. ...

SPML vs CARML for Enterprise Applications

Many portal platforms have the ability to consume an enterprise "profile" that can be comprised of calls that are unioned from data sources such as LDAP and relational databases. Is it best to build a profile service using SPML because it is more mature or wait for the emerging CARML specification to reach production status? ...

How do I clone an OpenLDAP database

I know this is more like a serverfault question than a stackoverflow question, but since serverfault isn't up yet, here I go: I'm supposed to move an application from one redhat server to another, and without very good knowledge of the internal workings of the application, how would I move the OpenLDAP database from the one machine to t...

Choosing an RDN for new objectClasses in LDAP?

What are the best practices for choosing an RDN when creating new objectClasses in LDAP? I know you can choose from uid, cn, ou, and so on, but what practices should one follow? ...

Fetch all users in active directory in a specified folder

Hi I'm doing an application which needs to query active directory and I've been using ldap queries for that purpose. My problem is that I really cant use "ou=People,dc=pisoftware,dc=com" because the People node name keeps changing because my department name have been changed a lot recently. So in order to avoid the problem of having t...

Where can I get an enterprise directory structure?

I want to be able to load up an Active Directory server with a realistic medium-to-large enterprise directory structure (groups, users) so that I can run performance tests on an application which makes use of that data. In my fantasy world, some big company would export their (anonymized) AD structure in a way I could import directly. ...

Min Security Rights to Preform LDAP Queries in Active Directory

Our company is trying to implement a few single sign-on applications using Active Directory (Windows Server 2003) and LDAP. I would like to lock down the account used to make these LDAP queries as much as possible. What is the best practice for configuring this type of account? ...

Active Directory Groups With SQL Server 2005

Alright, so I already have an existing connection to Active Directory on my server. I know that querying active directory works. What I want to be able to do is query for all of the ou's and/or groups in active directory, and also be able to find the users the belong to those groups/ous. this is the current query that just pulls user ...