ldap

Is JCE needed if you have LDAP?

Do you need to have JCE embedded in your java application when you already have LDAP authentication in place. ...

Know of SSO turnkey Appliance with ldap, radius, openid, etc?

I'm helping a typical small company that started with a couple of outsourced systems (google apps, svn/trac). added an internal jabber server (ejabber for mostly iChat clients). subscribes to a couple of webservices (e.g. highrisehq). and has a vpn service provided by a pfsense freebsd firewall. And the net result of all this is that th...

Can NovellAuthenticators (LDAP) be add to Weblogic using WLST Offline?

I would like to create a WLST script to create my Weblogic domain. However I'm having problems adding the LDAP config. cd("/SecurityConfiguration/myDomain") cmo.createRealm("myrealm") cd("/SecurityConfiguration/myDomain/Realms/myrealm") cmo.createAuthenticationProvider("myLDAP", "weblogic.security.providers.authentication.NovellAuthent...

Subversion with AD Groups with Linux?

I try to migrate a Windows SVN Server to Linux. I have configured Apache to validate against AD for Useraccess so only AD Users can logon. Now i have to set permissions for repositories with authz files. When i set permission with AD username it works, but AD groups it doesn't. The authz file looks like the following: [test:/] user1=rw...

svnserve with LDAP

I would like to know how to setup an SVN repository with LDAP authentication. I do not want to use Apache DAV though. ...

LDAP through Ruby or Rails

I've been attempting to hook a Rails application up to ActiveDirectory. I'll be synchronizing data about users between AD and a database, currently MySQL (but may turn into SQL Server or PostgreSQL). I've checked out activedirectory-ruby, and it looks really buggy (for a 1.0 release!?). It wraps Net::LDAP, so I tried using that instead,...

How can I set up an LDAP connection pool in a JEE Container?

I need to put an LDAP contextSource into my JEE container's JNDI tree so it can be used by applications inside the container. I'm using Spring-LDAP to perform queries against ORACLE OVD. For development, I simply set up the contextSource in the Spring xml configuration file. For production, however, I need to be able to use a JNDI looku...

What is a good embeddable Java LDAP server?

I'm working on a Java web application that integrates with a few other external applications that are deployed along with it. Authentication information must be synchronized across everything and the other applications want to authenticate against LDAP. The application will be deployed in environments where there will be no other LDAP se...

What is a good .Net library for Windows User Administration?

We have a company intranet with staff management functions. I would like to begin automating setup of new staff members, e.g. creating Windows accounts for them, creating their home folders, setting up shares, and the like. When a staff member leaves the company I would like to automatically remove their user. I have been battling to fi...

How to configure Tomcat 5.5 to authenticate against Win2003 Activedirectory(LDAP)

How to configure Tomcat 5.5 to authenticate against Win2003 Activedirectory(LDAP) What changes are needed to default tomcat configuration, at least server.xml needs to be changed somehow to have IP of Win2003 server? ...

Lookups in VB.NET Bogging Down LDAP Server

Hello All, My DBAs have informed me that one of my applications is really bogging down one of our LDAP servers. I've looked at the code several times, but I can't see any way to limit the amount of times I have to hit LDAP. So now I've decided to look at the way that I am actually obtaining the data to see if there is a better way. I...

How to read TermainsServices IADsTSUserEx Property from LDAP in C#?

I have read the following properties from AD, TerminalServicesProfilePath TerminalServicesHomeDirectory TerminalServicesHomeDrive I've tried DirectoryEntry and DirectorySearcher. But they does not include the properties. I found some example in vbscript and VC to read them. However I failed to make it working in C#. Am I missing some...

how to retrieve additional LDAP data fields via Tomcat ( getRemoteUser gives just name)

Hi, I have configured Tomcat to use LDAP / AD. How can I get more details about the logged in user, the userid is returned by request.getRemoteUser() but not the full name that I need. how do I get the actual "displayName" (full name) from AD ? I am using ldap/activedirectory/tomcat 5.5 ...

Best way to quickly determine whether a user account is a member of an AD group?

I currently have some code that pulls down a list of users in a group and then iterates through that group to determine if a given account exists, but it seems like there ought to be a more concise (and perhaps faster) way to accomplish this. This code (VB.NET) attempts to use the member property of the group object, but it is returning...

Add LDAP entry to Active Directory via ext/ldap

Using ext/ldap I'm trying to add entries to an Active Directory. As long as I only use one single structural objectClass everything works as expected, but as soon as I try to add an entry with a second auxiliary objectClass, the server reports an error: Server is unwilling to perform; 00002040: SvcErr: DSID-030F0AA0, problem 5003 (...

How can I determine if an AD group contains a given DirectoryEntry from another (trusted) domain?

I am trying to beef up my code that determines whether a user is a member of a given AD group. It essentially works except when the member of the group happens to be from another (trusted) domain because it is stored as a foreignsecurityprincipal. Given that I have a valid DirectoryEntry object for both the Group I want to test, and the...

LDAP Authentication using CGI+TCL

How can I authenticate a user with LDAP using CGI/TCL stack? Please provide a sample code-snippet if possible. I am using an Apache Web Server on RHEL 5.0; AD exists on a remote Win2003 server. ...

Novell LDAP C# - Novell.Directory.Ldap - Has anybody made it work?

Hi, I'm trying to use the library released by Novell (Novell.Directory.Ldap). Version 2.1.10. What I've done so far: I tested the connection with an application (LdapBrowser) and it's working, so its not a communication problem. It's compiled in Mono, but I'm working with Visual Studio. So created a project with the sources. I also ...

LDAP Java library

We are using J2EE to develop a security product that relies on LDAP for authentication and role-based user management. The team has implemented this using the JNDI but we have run into various pitfalls. I am looking for an LDAP API that handles all the low-level details and satisfies the following requirements: LDAP User authenticatio...

Authenticating against Active Directory with Java on Linux

Hello, I have a simple task of authenticating against Active Directory using Java. Just verifying credentials and nothing else. Let's say my domain is "fun.xyz.tld", OU path is unknown, and username/password is testu/testp. I know there's a few Java libraries out there that simplify this task, but I wasn't successful at implementing t...