active questions tagged ldap - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T07:31:00Zhttp://stackoverflow.com/feeds/tag/ldaphttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1270571/can-a-user-be-part-of-multiple-subtree-in-a-ldap-based-directory-service-instan0can a user be part of multiple subtree in a (Ldap based) Directory Service instance ?Adil2009-08-13T07:37:04Z2009-12-18T21:15:47Z
<p>Hi,
I am pretty new to the ldap based directory service programming using .net framework; hence have a basic silly question.</p>
<p>I would like to find out the all sub trees a particular user belongs to using System.DirectoryServices.Protocol.</p>
<p>First of all , Can a User be part of the multiple Sub Trees in “a” directory service instance? If yes, then how can I find all the sub trees that a particular user belongs to using “System.DirectoryServices.Protocol “ namespace?</p>
<p>If a user belongs to “only” a particular sub tree, then I guess I can find all the DN of the sub tree from the DN of the user. Please let me know if there is any other efficient way?</p>
<p>Update:</p>
<p>Thanks you guys for your quick replies.
To be specific about my question , given this is DN of my user object - “uid=DaffyD,OU=Ducks,OU=People,O=A “ , whether can it exist in other OU directly or indirectly? E.g. can “OU=Ducks” be part of any other OU than “People”?</p>
<p>Then my next question, without doing some kind of string manipulation of user’s DN , can I somehow find the names of parent nodes’ DN that this user using System.DirectoryService.Protocol efficiently?</p>
<p>Regards,</p>
<p>Adil</p>
http://stackoverflow.com/questions/84795/how-do-i-speed-up-data-retrieval-from-net-ad-within-coldfusion1How do I speed up data retrieval from .NET AD within ColdFusionBrian2008-09-17T15:58:18Z2009-12-18T21:13:19Z
<p>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 approximately 20 seconds per additional field):</p>
<pre><code><cfset dllPath="C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\System.DirectoryServices.dll" />
<cfset LDAPPath="LDAP://" & arguments.searchPath />
<cfset theLookUp=CreateObject(".NET","System.DirectoryServices.DirectoryEntry", dllPath).init(LDAPPath) />
<cfset theSearch=CreateObject(".NET","System.DirectoryServices.DirectorySearcher", dllPath).init(theLookUp) />
<cfset theSearch.Set_Filter(arguments.theFilter) />
<cfset theObject = theSearch.FindAll() />
<cfloop index="row" from="#startRow#" to="#endRow#">
<cfset QueryAddRow(theQuery) />
<cfloop list="#columnList#" index="col">
<cfloop from="0" to="#theObject.Get_Item(row).Get_Properties().Get_Item(col).Get_Count()-1#" index="item">
<cftry>
<cfset theQuery[col][theQuery.recordCount]=ListAppend(theQuery[col][theQuery.recordCount],theObject.Get_Item(row).Get_Properties().Get_Item(col).Get_Item(item),"|") />
<cfcatch type="any">
</cfcatch>
</cftry>
</cfloop>
</cfloop>
</cfloop>
</code></pre>
http://stackoverflow.com/questions/445144/apache-tomcat-ldap-authentication-based-on-ad-group-membership0Apache/Tomcat - LDAP Authentication based on AD Group MembershipLance2009-01-14T23:54:58Z2009-12-18T21:11:21Z
<p>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 thing we would like to do is limit access to users based on their membership on a specific group in AD. Basically, only users of GroupA will be alowed to access the app. I'm wondering if this type of configuration is possible. If so, can you point me in the right direction? Thanks in advance.</p>
http://stackoverflow.com/questions/749268/how-can-i-find-out-which-server-hosts-ldap-on-my-windows-domain2How can I find out which server hosts LDAP on my windows domain?Chu2009-04-14T20:36:09Z2009-12-18T21:09:07Z
<p>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? </p>
<p>I've also heard rumors that having the server name (ldap://server/) is not always needed as long as I've got dc=domain,dc=com in my query string, but I've so far been able to work with it this way.</p>
<p>Any tips?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1540595/using-directorysearcher-to-query-multiple-ous0Using DirectorySearcher to query multiple OUsMatt2009-10-08T21:26:07Z2009-12-18T21:06:25Z
<p>I have the following code:</p>
<pre><code>var directoryEntry = new DirectoryEntry(distributionListsListADSPath);
var directorySearcher = new DirectorySearcher(directoryEntry)
{ SizeLimit = int.MaxValue, PageSize = int.MaxValue };
var result = directorySearcher.FindAll();
</code></pre>
<p>The problem is I want to search two seperate OUs.</p>
<p>So what I do is run through this twice, once where </p>
<pre><code>private const string distributionListsListADSPath =
"LDAP://OU=Distribution Lists,OU=Groups,DC=enron,DC=com";
</code></pre>
<p>and a second where it is </p>
<pre><code>private const string distributionListsListADSPath =
"LDAP://OU=Security Groups,OU=Groups,DC=enron,DC=com";
</code></pre>
<p>Ideally, I could do something like </p>
<pre><code>private const string distributionListsListADSPath =
"LDAP://OU=Distribution Lists | OU = Security Groups ,OU=Groups,DC=enron,DC=com";
</code></pre>
http://stackoverflow.com/questions/242546/can-i-use-two-kerberos-keytabs-from-a-single-host0Can I use two Kerberos Keytabs from a single host?Guy2008-10-28T08:23:57Z2009-12-17T23:07:51Z
<p>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 Directory servers with Kerberos as the connection method?</p>
http://stackoverflow.com/questions/663402/what-are-the-differences-between-ldap-and-active-directory8what are the differences between ldap and active directory?boingboing2009-03-19T18:18:27Z2009-12-17T17:13:12Z
<p>what are the differences between ldap and active directory?</p>
http://stackoverflow.com/questions/1138082/ldap-requests-hanging-for-15-seconds1LDAP requests hanging for 15 secondsawi2009-07-16T14:38:59Z2009-12-17T12:00:01Z
<p>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).</p>
<p>I did some threaddumps of the server and noticed that many threads where waiting on a lock: com.sun.jndi.ldap.LdapRequest@54ceac</p>
<pre><code>java.lang.Object.wait(Native Method)
com.sun.jndi.ldap.Connection.readReply(Connection.java:418)
com.sun.jndi.ldap.LdapClient.ldapBind(LdapClient.java:340)
com.sun.jndi.ldap.LdapClient.authenticate(LdapClient.java:192)
com.sun.jndi.ldap.LdapCtx.connect(LdapCtx.java:2637)
com.sun.jndi.ldap.LdapCtx.(LdapCtx.java:283)
com.sun.jndi.ldap.LdapCtxFactory.getUsingURL(LdapCtxFactory.java:175)
com.sun.jndi.ldap.LdapCtxFactory.getLdapCtxInstance(LdapCtxFactory.java:134)
com.sun.jndi.url.ldap.ldapURLContextFactory.getObjectInstance(ldapURLContextFactory.java:35)
javax.naming.spi.NamingManager.getURLObject(NamingManager.java:584)
</code></pre>
<p>All of the requests I have seen that have been waiting in this state have used more than 15 seconds to complete. We are monitoring the LDAP-server and all requests from the monitoring tool finish in less than 200 ms. This makes me think this is a problem with the com.sun.jndi.ldap code. Decompiling the com.sun.jndi.ldap.Connection class (jdk1.5.0_12) I see this:</p>
<pre><code>BerDecoder readReply(LdapRequest ldaprequest) throws IOException, NamingException
{
_L2:
BerDecoder berdecoder;
if((berdecoder = ldaprequest.getReplyBer()) != null)
break; /* Loop/switch isn't completed */
try
{
label0:
{
synchronized(this)
{
if(sock == null)
throw new ServiceUnavailableException((new StringBuilder()).append(host).append(":").append(port).append("; socket closed").toString());
}
synchronized(ldaprequest)
{
berdecoder = ldaprequest.getReplyBer();
if(berdecoder == null)
{
ldaprequest.wait(15000L);
break label0;
}
}
break; /* Loop/switch isn't completed */
}
}
...
</code></pre>
<p>There is apparently a hardcoded timeout of 15000 milliseconds. </p>
<p>Do anyone have any ideas for a fix/workaround?</p>
http://stackoverflow.com/questions/1427747/create-a-g3-fax-image-with-an-asn-1-wrapper-for-ldap-photo2Create a G3 fax image with an ASN.1 wrapper for ldap photossg314159262009-09-15T15:04:01Z2009-12-15T23:52:37Z
<p>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 standard .NET image/bitmap objects?</p>
<p>This is the LDAP definition of the <a href="http://msdn.microsoft.com/en-us/library/ms679116%28VS.85%29.aspx" rel="nofollow">photo attribute</a>.</p>
http://stackoverflow.com/questions/1908212/websphere-server-5-1-2-ldap-multiple-urls0Websphere Server 5.1.2 Ldap Multiple URLSahiru2009-12-15T15:31:34Z2009-12-15T15:31:34Z
<p>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 server/jvm support multiple URLs? Supposedly Sun's build of java 1.4.2 supports urls in this fashion. Is there anyway to do this?</p>
http://stackoverflow.com/questions/1904925/directoryservices-accountmanagement-group-membership-checking-efficiency0DirectoryServices.AccountManagement - group membership checking efficiencyBrianLy2009-12-15T02:53:36Z2009-12-15T06:24:17Z
<p>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 users. I'd prefer to stick to <a href="http://msdn.microsoft.com/en-us/library/system.directoryservices.accountmanagement.aspx" rel="nofollow">System.DirectoryServices.AccountManagement</a> if possible to reduce the amount of code that's written for this app.</p>
<p>There appear to be 2 general approaches to checking whether someone is a member:</p>
<ol>
<li>Use <a href="http://msdn.microsoft.com/en-us/library/system.directoryservices.accountmanagement.userprincipal.ismemberof.aspx" rel="nofollow">UserPrincipal.IsMemberOf()</a> to get a boolean value indicating membership</li>
<li>Use <a href="http://msdn.microsoft.com/en-us/library/system.directoryservices.accountmanagement.userprincipal.getgroups.aspx" rel="nofollow">UserPrincipal.GetGroups()</a> to get a list of group memberships that I can manually check</li>
</ol>
<p>I want to avoid the enumerating 70k users to check whether someone is in a group, so option 2 seems to be more efficient on face value. When I go into work I can do some tests against both methods but I wanted to get some info on what these methods are really doing under the covers. Am I on the right track here in my thinking?</p>
<p>One last point about the library I'm using. Can I get better performance if I drop out of System.DirectoryServices.AccountManagement altogether and write my own LDAP queries?</p>
http://stackoverflow.com/questions/1394025/active-directory-ldap-check-account-locked-out-password-expired0Active Directory (LDAP) - Check account locked out / Password expiredJabezz2009-09-08T13:25:27Z2009-12-14T19:42:38Z
<p>Currently I authenticate users against some AD using the following code:</p>
<pre><code>DirectoryEntry entry = new DirectoryEntry(_path, username, pwd);
try
{
// Bind to the native AdsObject to force authentication.
Object obj = entry.NativeObject;
DirectorySearcher search = new DirectorySearcher(entry) { Filter = "(sAMAccountName=" + username + ")" };
search.PropertiesToLoad.Add("cn");
SearchResult result = search.FindOne();
if (result == null)
{
return false;
}
// Update the new path to the user in the directory
_path = result.Path;
_filterAttribute = (String)result.Properties["cn"][0];
}
catch (Exception ex)
{
throw new Exception("Error authenticating user. " + ex.Message);
}
</code></pre>
<p>This works perfectly for validating a password against a username.</p>
<p>The problem comes in that a generic errors is always returned "Logon failure: unknown user name or bad password." when authentication fails.</p>
<p>However authentication might also fail when an account is locked out.</p>
<p>How would I know if it is failing because of it being locked out?</p>
<p>I've come across articles saying you can use:</p>
<pre><code>Convert.ToBoolean(entry.InvokeGet("IsAccountLocked"))
</code></pre>
<p>or do something like explained <a href="http://en.csharp-online.net/User_Management_with_Active_Directory%E2%80%94Determining_Account_Lockout" rel="nofollow">here</a></p>
<p>The problem is, whenever you try to access any property on the DirectoryEntry, the same error would be thrown.</p>
<p>Any other suggestion of how to get to the actual reason that authentication failed? (account locked out / password expired / etc.)</p>
<p>The AD I connect to might not neccesarily be a windows server.</p>
http://stackoverflow.com/questions/1401667/ldap-authentication-in-asp-net-mvc2LDAP Authentication in ASP.Net MVCobjectsbinding2009-09-09T19:42:21Z2009-12-14T16:17:44Z
<p>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 log in. </p>
<p>I dont want the user to be able to register, however he should be able to enter his windows domain userId and password and be authenticated by the domain server.</p>
<p>The solutions I have seen for example <a href="http://helios.ca/2009/05/04/aspnet-mvc-forms-authentication-with-active-directory/" rel="nofollow">here on Mike's Blog</a>
does not require the user to enter his/her UserId or password.</p>
<p>how can I get my ASP.Net MVC application to show a log on form and authenticate the user against the windows domain?</p>
<p>Please explain with a sample if possible </p>
http://stackoverflow.com/questions/267869/configuring-tomcat-to-authenticate-using-windows-active-directory4Configuring Tomcat to authenticate using Windows Active Directorysanttu2008-11-06T07:37:26Z2009-12-14T09:08:08Z
<p>What is the best way to configure Tomcat 5.5 or later to authenticate users from Windows Active Directory?</p>
http://stackoverflow.com/questions/1883165/strange-issue-with-system-directoryservices-accountmanagement-userprincipal-findb1Strange issue with System.DirectoryServices.AccountManagement.UserPrincipal.FindByIdentityNick2009-12-10T18:50:37Z2009-12-11T01:25:58Z
<p>We're writing a system that allows a user to change their account password through a web application on our intranet. </p>
<p>At first, everything appeared to be running smoothly. During development passwords for our test accounts could be changed with no problem.</p>
<p>When we made the system live, however, we started running into issues. Here are the symptoms:</p>
<ol>
<li>At first, everything is fine. Users
can change their passwords. </li>
<li>At some
point, the following error occurs in
UserPrincipal.FindByIdentity:
"System.Runtime.InteropServices.COMException:
The authentication mechanism is
unknown. " </li>
<li>From then on, trying to
change a password through the web
application results in the error:
"System.Runtime.InteropServices.COMException:
The server is not operational. "</li>
<li>If I manually recycle the app pool,
everything seems to fix itself until
more errors begin happening... i.e.,
the process starts all over again at
phase 1.</li>
</ol>
<p>Here's the relevant snippet of code:</p>
<p><hr></p>
<pre><code> private static PrincipalContext CreateManagementContext() {
return new PrincipalContext(
ContextType.Domain,
ActiveDirectoryDomain,
ActiveDirectoryManagementAccountName,
ActiveDirectoryManagementAccountPassword);
}
private static void ChangeActiveDirectoryPasword(string username, string password) {
if (username == null) throw new ArgumentNullException("username");
if (password == null) throw new ArgumentNullException("password");
using (var context = CreateManagementContext())
using (var user = UserPrincipal.FindByIdentity(context, IdentityType.SamAccountName, username)) {
user.SetPassword(password);
}
}
</code></pre>
<p>Any clues as to why this is happening? Google searches aren't turning up anything really helpful, and neither are the docs on MSDN.</p>
http://stackoverflow.com/questions/553293/what-is-the-ldap-filter-string-length-limit-in-active-directory3What is the LDAP filter string length limit in Active Directory?Tomalak2009-02-16T13:25:07Z2009-12-10T19:09:38Z
<p>Can anyone point me to a resource that defines the maximum allowable length of the LDAP filter string in Active Directory?</p>
http://stackoverflow.com/questions/1868803/ldap-gettling-a-list-of-logon-names1LDAP Gettling a list of logon namesSean p 2009-12-08T18:09:41Z2009-12-10T17:18:32Z
<p>I have the need in my program to get the list of user logon names in a group. </p>
<p>This is what I have so far but it only returns all the users...which I need cut down to those in a group, of which i have the name of. </p>
<pre><code>Option Explicit On
Imports System.DirectoryServices
Imports System.DirectoryServices.ActiveDirectory
Module Module1
Sub Main()
Dim ADEntry As New DirectoryServices.DirectoryEntry("LDAP://OU=Users,OU=Irvine,OU=KNS,DC=corp,DC=kns,DC=com")
Dim objSearch As New System.DirectoryServices.DirectorySearcher(ADEntry)
Dim oResults As DirectoryServices.SearchResultCollection
Dim oResult As DirectoryServices.SearchResult
' THIS DOESNT WORK
' objSearch.Filter = "department = engineering"
oResults = objSearch.FindAll
For Each oResult In oResults
Console.WriteLine(oResult.GetDirectoryEntry.Properties("sAMAccountName").Value)
Next
End Sub
End Module
</code></pre>
http://stackoverflow.com/questions/1878283/how-to-avoid-plain-password-in-modldap0How to avoid plain password in mod_ldapchris13work2009-12-10T02:25:19Z2009-12-10T02:42:14Z
<p>There are a plain password store in mod_ldap. Is there any way to encrypt the password?</p>
<pre><code>AuthLDAPBindPassword password
</code></pre>
<p>Thank You.</p>
http://stackoverflow.com/questions/1842661/how-can-i-cause-ldapsimplebinds-to-timeout1How can I cause ldap_simple_bind_s to timeout?Graeme Perrow2009-12-03T20:24:48Z2009-12-09T21:26:29Z
<p>We recently had a problem with our test LDAP server - it was hung and wouldn't respond to requests. As a result, our application hung forever* while trying to bind to it. This only happened on Unix machines - on Windows, the <code>ldap_simple_bind_s</code> call timed out after about 30 seconds.</p>
<p>* I don't know if it really was <em>forever</em>, but it was at least several minutes.</p>
<p>I added calls to <code>ldap_set_option</code>, trying both <code>LDAP_OPT_TIMEOUT</code> and <code>LDAP_OPT_NETWORK_TIMEOUT</code>, but the bind call still hung. Is there any way to make <code>ldap_simple_bind_s</code> time out after some period of time of my choosing?</p>
http://stackoverflow.com/questions/1413002/return-ou-in-active-directory-search0Return OU in active directory searchJeremy2009-09-11T20:05:06Z2009-12-09T11:58:35Z
<p>I have performed an active directory search and now have a SearchResultCollection of all the users in active directory. I've specified all the properties that the DirectorySearch should load, but I also want to know what OU (distinguished name) each user is in. I know I could figure it out be getting a DirectoryEntry for each user, and look at the distinguished name of the directory entries parent directory entry, but this seems like it would be terribly slow. Is it possible to return the ou distinguished name some other way?</p>
http://stackoverflow.com/questions/400872/c-active-directory-check-username-password3C# Active Directory - Check username / passwordMichael G2008-12-30T17:11:43Z2009-12-09T10:20:09Z
<p>I'm using the following code on Windows Vista Ultimate SP1 to query our active directory server to check the user name and password of a user on a domain.</p>
<pre><code>public Object IsAuthenticated()
{
String domainAndUsername = strDomain + @"\" + strUser;
DirectoryEntry entry = new DirectoryEntry(_path, domainAndUsername, strPass);
SearchResult result;
try
{
//Bind to the native AdsObject to force authentication.
DirectorySearcher search = new DirectorySearcher(entry) { Filter = ("(SAMAccountName=" + strUser + ")") };
search.PropertiesToLoad.Add("givenName"); // First Name
search.PropertiesToLoad.Add("sn"); // Last Name
search.PropertiesToLoad.Add("cn"); // Last Name
result = search.FindOne();
if (null == result)
{
return null;
}
//Update the new path to the user in the directory.
_path = result.Path;
_filterAttribute = (String)result.Properties["cn"][0];
}
catch (Exception ex)
{
return new Exception("Error authenticating user. " + ex.Message);
}
return user;
}
</code></pre>
<p>the target is using .NET 3.5, and compiled with VS 2008 standard</p>
<p>I'm logged in under a domain account that is a domain admin where the application is running.</p>
<p>The code works perfectly on windows XP; but i get the following exception when running it on Vista: </p>
<pre><code>System.DirectoryServices.DirectoryServicesCOMException (0x8007052E): Logon failure: unknown user name or bad password.
at System.DirectoryServices.DirectoryEntry.Bind(Boolean throwIfFail)
at System.DirectoryServices.DirectoryEntry.Bind()
at System.DirectoryServices.DirectoryEntry.get_AdsObject()
at System.DirectoryServices.DirectorySearcher.FindAll(Boolean findMoreThanOne)
at System.DirectoryServices.DirectorySearcher.FindOne()
at Chain_Of_Custody.Classes.Authentication.LdapAuthentication.IsAuthenticated()
at System.DirectoryServices.DirectoryEntry.Bind(Boolean throwIfFail)
at System.DirectoryServices.DirectoryEntry.Bind()
at System.DirectoryServices.DirectoryEntry.get_AdsObject()
at System.DirectoryServices.DirectorySearcher.FindAll(Boolean findMoreThanOne)
at System.DirectoryServices.DirectorySearcher.FindOne()
at Chain_Of_Custody.Classes.Authentication.LdapAuthentication.IsAuthenticated()
</code></pre>
<p>I've tried changing the authentication types, I'm not sure what's going on.</p>
<p><hr /></p>
<p><b>See also</b>: <a href="http://stackoverflow.com/questions/290548/c-validate-a-username-and-password-against-active-directory">http://stackoverflow.com/questions/290548/c-validate-a-username-and-password-against-active-directory</a></p>
http://stackoverflow.com/questions/1508867/sso-from-external-web-app-to-multiple-ldap-ad-providers1SSO from external web app to multiple LDAP (AD) providersmattwoberts2009-10-02T10:52:44Z2009-12-09T05:00:02Z
<p>Hi,</p>
<p>We are looking into a solution for this problem:</p>
<p>We host a ASP.NET web app externally on a dedicated web server which is on its own domain. We have a client who use the web app exclusively, and want SSO using their windows credentials to automatically authenticate into the web application without having to log on. This client has users on 3 different domains across the world, so some users might be on a UK domain, others on a USA domain, etc.</p>
<p>So far, I'm looking at a couple of options:</p>
<p>1) A custom LDAP membership provider that somehow can authenticate against these external AD sources. Not sure if this is possible yet...</p>
<p>2) CAS (<a href="http://www.jasig.org/cas" rel="nofollow">http://www.jasig.org/cas</a>) to create a central auth service, that can hook into the AD sources. Not sure if its going to be possible to hook CAS up to multiple AS sources.</p>
<p>Does anyone have any thoughts or similar experiences that they can share for achieving this?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1838907/paged-ldapsearch-in-openldap-to-get-around-size-limit1Paged ldap_search in OpenLDAP to get around size limit?lx2009-12-03T10:01:09Z2009-12-08T17:58:17Z
<p>Hi there!</p>
<p>We are currently in the process of migrating from an aged proprietary directory service to OpenLDAP.
Today we ran into the problem that <a href="http://msdn.microsoft.com/en-us/library/aa366972%28VS.85%29.aspx" rel="nofollow">ldap_search_ext_s</a> or ldapsearch in general does not return any results, if the number of entries, which were to be returned by the current search, would hit a certain limit.</p>
<p>Unfortunately setting the size limit higher in the LDAP server configuration might just postpone the problem, as we have a really big database and our update mechanism, which runs every morning, has to performe huge queries.</p>
<p>In the MSDN documentation I noticed that there is a mechanism to perform a <a href="http://msdn.microsoft.com/en-us/library/aa366973%28VS.85%29.aspx" rel="nofollow">paged search</a>, which would allow me to get around the size limitation.
Apparently this is also specified in an <a href="http://tools.ietf.org/html/draft-howes-ldap-api-00" rel="nofollow">RFC draft from 1996</a> but hasn't been finalized (yet)?</p>
<p>Anyway, since I'm not working on a Windows-Box I have to use the OpenLDAP API, which doesn't seem to provide that mechanism (at least I couldn't find it on their <a href="http://www.openldap.org/software/man.cgi" rel="nofollow">search page</a>)</p>
<p>Which brings me to my question: Do you have an idea what I could do, to solve that problem in an elegant manner?</p>
<p>Thanks for your help!</p>
http://stackoverflow.com/questions/688967/plone-3-2-1-on-fedora-10-with-active-directory-authentication0Plone 3.2.1 on Fedora 10 with Active Directory AuthenticationShyam2009-03-27T08:44:43Z2009-12-07T23:00:03Z
<p>I have gone through tons of documents over the internet in enabling Active Directory Authentication for Plone 3 using LDAPMultiplugins, PlonePAS etc., but none of them are working for me.</p>
<p>Is there any one who has successfully done this? Even if this has accomplished on Windows, it is ok!</p>
http://stackoverflow.com/questions/1852258/how-to-identify-if-currently-logged-in-user-is-an-ldap-user-in-solaris0How to identify if currently logged in user is an LDAP user in Solarisunknown (google)2009-12-05T13:55:01Z2009-12-07T10:08:12Z
<p>Hi
I am new to LDAP.
I want to know how to identify if the currently logged in user in Solaris is a LDAP user or local user.
Any command?
or any C Run time functions like getspname, getpwnam which returns an attribute saying it is an LDAP user or local user after user logged in.
I am looking for Solaris.</p>
http://stackoverflow.com/questions/1551302/how-to-store-simple-name-value-pairs-in-an-ldap-directory1How to store simple name value pairs in an ldap directoryrmarimon2009-10-11T18:03:43Z2009-12-06T23:35:51Z
<p>I'm creating a user repository ldap backend for a series of web applications sharing the same users. I would like to store preference information in this ldap location. This way everything related to users is maintained in the same place and can be shared among all applications.</p>
<p>I'm thinking of a general structure like this:</p>
<pre>
ou=People,dc=domain,dc=com
uid=jdoe,ou=People,dc=domain,dc=com
ou=Preferences,uid=jdoe,dc=domain,dc=com
ou=firstpreference,ou=Preferences,uid=jdoe,dc=domain,dc=com
value : 123
value : 456
</pre>
<p>I have several questions:</p>
<ol>
<li><p>Is jsut below the user entry the right place to start storing the preferences? What objectClass should this entry be? I'm experimenting with organizationalUnit but it doesn't seem right.</p></li>
<li><p>What is the best way to store name value pairs for the preferences? Here my best guest is to create an entry just below the preferences having a name and create the value just under it. This way I can account for multiple values. What should be the correct objectClass for those entries?</p></li>
</ol>
<p>I'm working with OpenLDAP and wouldn't like to change the schemas that come with it. Is there a way to set this up using available schemas?</p>
http://stackoverflow.com/questions/1850420/asp-net-membership-providers-in-non-web-apps0ASP.NET membership providers in non-web apps?DougN2009-12-04T23:46:44Z2009-12-05T00:12:53Z
<p>Does anyone know if it's possible to use an ASP.NET membership (and role) provider in a non-web app (ie in a desktop C# app)?</p>
<p>Related question -- is there an LDAP membership provider (it looks like SharePoint has one, but I don't think it's the same as the ASP.NET provider). I'm sure the Active Directory one is probably close, but I'm not sure if it would work against Novell or Sun's LDAP servers.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/860571/active-directory-synchronization-with-transformation1Active Directory synchronization with transformation?Parand2009-05-13T21:40:18Z2009-12-04T12:00:05Z
<p>I'm not too familiar with Active Directory, so I may be taking the wrong approach here...</p>
<p>I'd like to have my master active directory instance replicated to another instance on a continuous basis, with various attributes changed. For example, I may want the passwords changed for all users, set to something random in the replica copy.</p>
<p>Data movement will only be one way - always from the master to the replica. The replica should be identical to the master with the exception of the modified attributes.</p>
<p>What's a good way to to do this?</p>
<p>I'd like to do this with multiple master ADs as well - the replica AD should contain the superset of users in all master ADs.</p>
<p>An alternative might be to layer something on top of my master ADs that perform the password/attribute changes on the fly. Is this possible/desirable?</p>
http://stackoverflow.com/questions/178580/bind-linux-to-active-directory-using-kerberos3bind Linux to Active Directory using kerberosRoe2008-10-07T13:58:56Z2009-12-04T04:02:15Z
<p>We are trying to bind a Linux machine (debian 4.0) to W2k3 AD. We have configured kerberos properly so that we can get TGTs. And users authenticate properly. However, PAM seems to be the sticky wicket. For example when we try to SSH to the linux machine as one of the AD users, the authentication succeeds (as per the auth.log) but I never get shell. The default environment is configured properly and PAM even creates the Homedir properly. As a reference we were loosely following:</p>
<p>https://help.ubuntu.com/community/ActiveDirectoryHowto</p>
http://stackoverflow.com/questions/1842982/how-can-the-windows-xp-login-be-passed-to-my-jboss-portal-application0How can the windows xp login be passed to my jboss portal application?spartikus2009-12-03T21:18:51Z2009-12-03T21:26:50Z
<p>My users will be logging into a secure windows xp workstation. They will be launching a jboss portal (app server = 4.2.2.GA, portal = 2.6.5) web application. This web application currently has them log in again. I can set this up to authenticate against an LDAP server but what I really want is to have them be authenticated based on the windows xp login they already used to get on the workstation. So the user experience would be to login to the windows workstation and then launching the website would go to the first logged in page. </p>
<p>I have no experience working this stuff so I would love some reference material. </p>