vote up 3 vote down star
1

Can anyone point me to a resource that defines the maximum allowable length of the LDAP filter string in Active Directory?

flag

55% accept rate

3 Answers

vote up 2 vote down check

According to http://technet.microsoft.com/en-us/library/cc755809.aspx the maximum LDAP request size (in bytes) that the server attempts to process defaults to 10485760 (bytes). If the server receives a request that is larger than this value, it closes the connection. Hope that helps.

link|flag
That's exactly what I was looking for. Thank you very much. :-) – Tomalak Feb 17 at 14:19
10 Megs? You can send a 10 Meg LDAP query? That seems excessively large! This refers to the request. Does it refer to the response? That should controlled elsewhere with maximum returned values, time for search, etc I presume. – geoffc Feb 17 at 19:32
This only refers to the request. Perhaps MaxQueryDuration, MaxTempTableSize and MaxDatagramRecv will also come into effect when using queries this large. The response size should be controlled by MaxPageSize and MaxResultSetSize, I think. – Stefan Gehrig Feb 18 at 7:58
vote up 1 vote down

According to the specification in RFC1558, there is not a hard limit imposed on the length of LDAP filter strings. Different implementations might have their own limits though.

link|flag
That's what I was assuming. I hoped there was some Microsoft white paper giving some hard facts, though. However, it sounds reasonable that there is no limit. – Tomalak Feb 16 at 13:58
I'll leave the question open until tomorrow. Just in case someone comes up with a definitive link on the topic. – Tomalak Feb 16 at 14:39
vote up 1 vote down

How are you using the LDAP query?
Is it a direct query or are you using some wrapper class (such as those found in System.DirectoryServices within the .Net framework)? As this may have its own limitations above and beyond the LDAP protocol.

link|flag
Probably, though that's a secondary problem. I intend to use ColdFusion (or Java, if CF doesn't play nice). But before I start coding I want to know if there is a wall I can hit in case filters get really long. – Tomalak Feb 16 at 13:42
As Chris says above there is no hard limit in the LDAP protocol. – F5ToDebug Feb 16 at 13:47
Yeah, that's what I was assuming as well, but I hoped there would be some Microsoft white paper that escaped my Google skills giving some hard facts. – Tomalak Feb 16 at 13:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.