Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   ASP .Net Security (http://www.velocityreviews.com/forums/f62-asp-net-security.html)
-   -   Active Directory Search fails ("The directory service is unavailab (http://www.velocityreviews.com/forums/t766664-active-directory-search-fails-the-directory-service-is-unavailab.html)

ejcosta 10-07-2004 07:57 PM

Active Directory Search fails ("The directory service is unavailab
 
Hi all,

I'm having one of those nerve wrecking errors, when trying to perform a
simple search in an Active Directory. The objective of the code is to, given
a user name, search the AD for couple of specified properties, including the
groups the user belongs to.

The odd thing is that, if I set filter simply as "(objectCategory=user)", it
works. If I add any other search criteria, it throws an exception with the
message "the directory service is unavailable.".

Can any of you help? Here's the code that I'm using to perform the search:

public static void GetADUserGroups(string LoggedInUser){
DirectorySearcher search = new DirectorySearcher("LDAP://" +
Common.getValue("SPDomain"));
search.Filter = @"(objectCategory=user)(samaccountname=" + LoggedInUser +
")";

search.PropertiesToLoad.Add("memberof");
search.PropertiesToLoad.Add("department");
search.PropertiesToLoad.Add("cn");
search.PropertiesToLoad.Add("sn");
search.PropertiesToLoad.Add("name");
search.PropertiesToLoad.Add("samaccountname");

System.Text.StringBuilder groupNames = new System.Text.StringBuilder();

// Search time out
TimeSpan waitTime;
try{
waitTime = new TimeSpan(0, 0, 60); //hh--mm-ss
search.ClientTimeout = waitTime; //wait this much time to display results
}
catch (Exception Ex){
throw new SystemException("Error = " + Ex.Message + Ex.InnerException, Ex);
}

try{
SearchResult result = search.FindOne();
if(result != null){
int propertyCount = result.Properties["memberOf"].Count;
String dn;
int equalsIndex, commaIndex;

for(int propertyCounter = 0; propertyCounter < propertyCount;
propertyCounter++){
dn = (String)result.Properties["memberOf"][propertyCounter];
equalsIndex = dn.IndexOf("=", 1);
commaIndex = dn.IndexOf(",", 1);
if(-1 == equalsIndex){
return;
}
groupNames.Append(dn.Substring((equalsIndex + 1), (commaIndex
- equalsIndex) - 1));
groupNames.Append("|");
}
}
}
catch(Exception ex){
throw new Exception("Error obtaining group names. " + ex.Message);
}
}

Thanks in advance for all the help you guys can provide!
ejcosta

Joe Kaplan \(MVP - ADSI\) 10-07-2004 09:40 PM

Re: Active Directory Search fails ("The directory service is unavailab
 
Your search filter should look like this for a compound query:
(&(objectCategory=user)(samaccountname=username) )

Normally, I'd expect an invalid filter syntax error though.

You might also need to include credentials in your DirectoryEntry
constructor if your security context isn't a domain account or can't hop to
the domain controller due to impersonation/delegation issues. This is
common in ASP.NET.

Joe K.

"ejcosta" <ejcosta@discussions.microsoft.com> wrote in message
news:43FC2F5E-D134-475E-ABB7-B84BBD50438B@microsoft.com...
> Hi all,
>
> I'm having one of those nerve wrecking errors, when trying to perform a
> simple search in an Active Directory. The objective of the code is to,
> given
> a user name, search the AD for couple of specified properties, including
> the
> groups the user belongs to.
>
> The odd thing is that, if I set filter simply as "(objectCategory=user)",
> it
> works. If I add any other search criteria, it throws an exception with the
> message "the directory service is unavailable.".
>
> Can any of you help? Here's the code that I'm using to perform the search:
>
> public static void GetADUserGroups(string LoggedInUser){
> DirectorySearcher search = new DirectorySearcher("LDAP://" +
> Common.getValue("SPDomain"));
> search.Filter = @"(objectCategory=user)(samaccountname=" + LoggedInUser +
> ")";
>
> search.PropertiesToLoad.Add("memberof");
> search.PropertiesToLoad.Add("department");
> search.PropertiesToLoad.Add("cn");
> search.PropertiesToLoad.Add("sn");
> search.PropertiesToLoad.Add("name");
> search.PropertiesToLoad.Add("samaccountname");
>
> System.Text.StringBuilder groupNames = new System.Text.StringBuilder();
>
> // Search time out
> TimeSpan waitTime;
> try{
> waitTime = new TimeSpan(0, 0, 60); //hh--mm-ss
> search.ClientTimeout = waitTime; //wait this much time to display results
> }
> catch (Exception Ex){
> throw new SystemException("Error = " + Ex.Message + Ex.InnerException,
> Ex);
> }
>
> try{
> SearchResult result = search.FindOne();
> if(result != null){
> int propertyCount = result.Properties["memberOf"].Count;
> String dn;
> int equalsIndex, commaIndex;
>
> for(int propertyCounter = 0; propertyCounter < propertyCount;
> propertyCounter++){
> dn = (String)result.Properties["memberOf"][propertyCounter];
> equalsIndex = dn.IndexOf("=", 1);
> commaIndex = dn.IndexOf(",", 1);
> if(-1 == equalsIndex){
> return;
> }
> groupNames.Append(dn.Substring((equalsIndex + 1), (commaIndex
> - equalsIndex) - 1));
> groupNames.Append("|");
> }
> }
> }
> catch(Exception ex){
> throw new Exception("Error obtaining group names. " + ex.Message);
> }
> }
>
> Thanks in advance for all the help you guys can provide!
> ejcosta




Eurico Costa 10-08-2004 09:57 AM

Re: Active Directory Search fails ("The directory service is unava
 
Joe,

Thank you so much for your help. Your answer worked perfectly.

Regards,
Eurico

"Joe Kaplan (MVP - ADSI)" wrote:

> Your search filter should look like this for a compound query:
> (&(objectCategory=user)(samaccountname=username) )
>
> Normally, I'd expect an invalid filter syntax error though.
>
> You might also need to include credentials in your DirectoryEntry
> constructor if your security context isn't a domain account or can't hop to
> the domain controller due to impersonation/delegation issues. This is
> common in ASP.NET.
>
> Joe K.
>
> "ejcosta" <ejcosta@discussions.microsoft.com> wrote in message
> news:43FC2F5E-D134-475E-ABB7-B84BBD50438B@microsoft.com...
> > Hi all,
> >
> > I'm having one of those nerve wrecking errors, when trying to perform a
> > simple search in an Active Directory. The objective of the code is to,
> > given
> > a user name, search the AD for couple of specified properties, including
> > the
> > groups the user belongs to.
> >
> > The odd thing is that, if I set filter simply as "(objectCategory=user)",
> > it
> > works. If I add any other search criteria, it throws an exception with the
> > message "the directory service is unavailable.".
> >
> > Can any of you help? Here's the code that I'm using to perform the search:
> >
> > public static void GetADUserGroups(string LoggedInUser){
> > DirectorySearcher search = new DirectorySearcher("LDAP://" +
> > Common.getValue("SPDomain"));
> > search.Filter = @"(objectCategory=user)(samaccountname=" + LoggedInUser +
> > ")";
> >
> > search.PropertiesToLoad.Add("memberof");
> > search.PropertiesToLoad.Add("department");
> > search.PropertiesToLoad.Add("cn");
> > search.PropertiesToLoad.Add("sn");
> > search.PropertiesToLoad.Add("name");
> > search.PropertiesToLoad.Add("samaccountname");
> >
> > System.Text.StringBuilder groupNames = new System.Text.StringBuilder();
> >
> > // Search time out
> > TimeSpan waitTime;
> > try{
> > waitTime = new TimeSpan(0, 0, 60); //hh--mm-ss
> > search.ClientTimeout = waitTime; //wait this much time to display results
> > }
> > catch (Exception Ex){
> > throw new SystemException("Error = " + Ex.Message + Ex.InnerException,
> > Ex);
> > }
> >
> > try{
> > SearchResult result = search.FindOne();
> > if(result != null){
> > int propertyCount = result.Properties["memberOf"].Count;
> > String dn;
> > int equalsIndex, commaIndex;
> >
> > for(int propertyCounter = 0; propertyCounter < propertyCount;
> > propertyCounter++){
> > dn = (String)result.Properties["memberOf"][propertyCounter];
> > equalsIndex = dn.IndexOf("=", 1);
> > commaIndex = dn.IndexOf(",", 1);
> > if(-1 == equalsIndex){
> > return;
> > }
> > groupNames.Append(dn.Substring((equalsIndex + 1), (commaIndex
> > - equalsIndex) - 1));
> > groupNames.Append("|");
> > }
> > }
> > }
> > catch(Exception ex){
> > throw new Exception("Error obtaining group names. " + ex.Message);
> > }
> > }
> >
> > Thanks in advance for all the help you guys can provide!
> > ejcosta

>
>
>



All times are GMT. The time now is 01:54 AM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57