0
votes
2answers
164 views
can a user be part of multiple subtree in a (Ldap based) Directory Service instance ?
Hi,
I am pretty new to the ldap based directory service programming using .net framework; hence have a basic silly question.
I would like to find out the all sub trees a particular user belongs to …
1
vote
4answers
228 views
How do I speed up data retrieval from .NET AD within ColdFusion
How can I optimize the following code, which currently takes over 2 minutes to retrieve and loop through 800+ records from a pool of over 100K records, returning 6 fields per record (adds …
0
votes
2answers
912 views
Apache/Tomcat - LDAP Authentication based on AD Group Membership
We currently have an Apache/Tomcat (5.5) application running and we're using the LDAP authentication feature (by configuring the realm) against a multi domain structure and it's working great. One …
2
votes
3answers
2k views
How can I find out which server hosts LDAP on my windows domain?
I am trying develop an application (C#) to query an LDAP server. I don't know the actual server named to query - is there a way to find out using standard windows tools or something in .net?
I've …
0
votes
2answers
84 views
Using DirectorySearcher to query multiple OUs
I have the following code:
var directoryEntry = new DirectoryEntry(distributionListsListADSPath);
var directorySearcher = new DirectorySearcher(directoryEntry)
{ SizeLimit = int.MaxValue, …
0
votes
1answer
73 views
Can I use two Kerberos Keytabs from a single host?
My application enables defining several LDAP servers to work with.
One might want to define Kerberos access to more than one LDAP server.
Can it be done? Can a single host juggle between Active …
8
votes
5answers
2k views
what are the differences between ldap and active directory?
what are the differences between ldap and active directory?
1
vote
2answers
211 views
LDAP requests hanging for 15 seconds
I have JBoss application server that is using LDAP for authentication. Lately we have noticed that there are a lot of slow requests (> 15 seconds).
I did some threaddumps of the server and noticed …
2
votes
1answer
61 views
Create a G3 fax image with an ASN.1 wrapper for ldap photo
How can I create "An object encoded in G3 fax as explained in recommendation T.4, with an ASN.1 wrapper to make it compatible with an X.400 BodyPart as defined in X.420." in C#, starting from any …
0
votes
0answers
9 views
Websphere Server 5.1.2 Ldap Multiple URLS
I am trying to make some ldap calls in Websphere 5.1.2 (which is an IBM 1.4.2 jvm?) and I'm trying to pass it multiple URLS in the format of "url url url url" etc. Does this build of websphere …
0
votes
1answer
27 views
DirectoryServices.AccountManagement - group membership checking efficiency
We have a group in Active Directory with over 70k user accounts. I need to check whether someone is a member of that group. The code is going to run in a web app with a high volume of concurrent …
0
votes
3answers
656 views
Active Directory (LDAP) - Check account locked out / Password expired
Currently I authenticate users against some AD using the following code:
DirectoryEntry entry = new DirectoryEntry(_path, username, pwd);
try
{
// Bind to the native AdsObject to force …
2
votes
5answers
331 views
LDAP Authentication in ASP.Net MVC
hi
I want to be able to authenticate a user by using their domain UserId and Password.
How can I do this, the default ASP.Net MVC application allows the user to register a userId and password and then …
4
votes
3answers
3k views
Configuring Tomcat to authenticate using Windows Active Directory
What is the best way to configure Tomcat 5.5 or later to authenticate users from Windows Active Directory?
1
vote
1answer
71 views
Strange issue with System.DirectoryServices.AccountManagement.UserPrincipal.FindByIdentity
We're writing a system that allows a user to change their account password through a web application on our intranet.
At first, everything appeared to be running smoothly. During development …
