473,770 Members | 5,136 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

AD DirectorySearch er problem with SearchResultCol lection class

I have 2 containers with objects. The veterans container contains
unique objects. Each of those objects can have 1 or more corresponding
card objects in the cards container.

VeteranCN is formatted (SSN-LastName)
CardsCN is formatted (SSN-LastName-# OR SSN-LastName-#CNFblahblahbla h)
(the # is the card number)

I have the following code, which searches a container for objects. It
creates the value that will be used for the next card object by
querying the cards for that user and adding 1 to it which will be a new
object (the creation of the object is done in other code not shown -
this is just to figure out what the new object will be called). Right
now, I am just getting a count of the number of results from the query
and adding 1 to it - the problem with that is the results may include
error objects (formatted SSN-LastName-#CNF) so using the Count of the
results will give me the wrong number. For example:
The query results could be:
123456789-Smith-1
123456789-Smith-2
123456789-Smith-3
123456789-Smith-3CNFnjrgnelrkjg ne489t3hth
123456789-Smith-4
123456789-Smith-5

If the above were the LDAP query results, my code would name the new
object 123456789-Smith-7 and NOT 123456789-Smith-6 which it SHOULD be.

So basically I need to modify my code to pull the highest number from
the results. I think you would use the Item member to somehow loop
through the SearchResultsCo llection, but I'm clueless how to do that.
Any suggestions or how this can be done would be appreciated. Thanks


Dim oSearcher As DirectorySearch er = New DirectorySearch er(oroot)
Dim oResults As SearchResultCol lection
Dim oResult As SearchResult

'gets the AD objects
oSearcher.Prope rtiesToLoad.Add ("cn")

oSearcher.Filte r = "(cn=" & AllRecords.Rows (currentrow)("V eteranCN") &
"*" & ")"
oResults = oSearcher.FindA ll

'create Cards CN based on what the highest current Cards CN is
If oResults.Count < 1 Then
AllRecords.Rows (currentrow)("N ewCardsCN") =
AllRecords.Rows (currentrow)("V eteranCN") & "-1"
End If

If oResults.Count = 1 Then
AllRecords.Rows (currentrow)("N ewCardsCN") =
AllRecords.Rows (currentrow)("V eteranCN") & "-2"
End If

If oResults.Count > 1 Then
AllRecords.Rows (currentrow)("N ewCardsCN") =
AllRecords.Rows (currentrow)("V eteranCN") & "-" & (oResults.Count + 1)
End If

Mar 22 '06 #1
1 2012
If it possible to create a search filter that excludes results where
CNF is anywhere in the CN, but still contains the search criteria?

Mar 22 '06 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
1674
by: Jayant Sane | last post by:
I am trying to search a user object that is located in a domain that is sub-ordinate to the one from where I begin my search. For eg. I have the domains as DC=corp,DC=company,DC=com and DC=dept1,DC=corp,DC=company,DC=com I use the following code: DirectoryEntry rootDNC = new DirectoryEntry("LDAP://DC=corp,DC=company,DC=com" ); DirectorySearcher searcher = new DirectorySearcher(rootDNC); searcher.Filter =...
1
4028
by: Sezgin Rafed | last post by:
Hi everyone, I need to select Users from 2 Domains - one the User has logged into and a second one, which is a trusted Domain. There is no problem selecting Users from the Domain the User has logged into. When trying to query the trusted Domain I get the "a referral was returned by the server" error message and no results - SearchResultCollection has no items. Any help solving the problem will be greatly appreciated. Code snippet...
2
7083
by: Jason S | last post by:
Group, I'm hoping someone can shed some light on active directory search pagination for me. For the DirectorySearcher class there are several methods for paging (.PageSize, .ServerPageTimeLimit) but there are no examples or explanation. How do I implement pagination with these properties? I can't seem to locate any pointers on this. The closest I came was this fine article by Duncan Mackenzie...
4
8225
by: cameron | last post by:
I have always been under the impression that LDAP was optimized for speed. Fast queries, fast access, slower writes. I have a block of data in LDAP and in SQL. Exact same data. The query is fast but the first access to the result set takes longer that to do the query in SQL and process the sql results. From my trace.axd LDAP Test Starting Search 0.000112 0.000043 LDAP Test Done Search 0.003821 0.003374 <--- fast query at .003 sec LDAP...
1
887
by: Jay | last post by:
I need to add a parameter to a directorysearcher.filter rather than using hard-coded text. I have the following code that finds all members of an AD group and then for each of those results tries to find that users samAccountName. Perhaps I'm going about this incorrectly but I know if I could pass my searcher.filter a paramter rather than typing "cn=jason", etc this code would work, any help would be very much appreciated!: 'Get all...
0
1539
by: Andrew124 | last post by:
Can anyone tell me why the code below returnes oX80005000 Unknown Error on W2K Advanced Server but doesn't work on W2K SBS: DirectoryEntry tmproot = new DirectoryEntry(ADPrefix + member.Replace("/","\\/")); DirectorySearcher tmpsrch = new DirectorySearcher(tmproot); tmpsrch.PropertiesToLoad.Add("objectclass"); tmpsrch.PropertiesToLoad.Add("distinguishedName"); tmpsrch.PropertiesToLoad.Add("cn");...
2
3331
by: dhnriverside | last post by:
Hi I'm getting the following error in my code... "Exception Details: System.Runtime.InteropServices.COMException: The server does not support the requested critical extension" Here's the function...
6
1231
by: Celldss | last post by:
I'm doing a standard AD query to retrieve a list of workstations that match certain criteria. I would like to iterate through that list and see if the workstations are still on the network and have correct dns records. Part of the difficulty is that the ping & dns check takes roughly 100ms. This makes my app take rather long as it needs to check thousands of workstations. I'm hoping multithreading can boost the speed. I would like to...
2
26876
by: Jim in Arizona | last post by:
I'm trying to do a check to see if a specific active directory user account exists in active directory AND a specific group. I can't seem to get the filter down right. I can do this to find a matching name in active directory: ================================================ Dim oroot As DirectoryEntry = New DirectoryEntry("LDAP://my.domain.local") Dim osearcher As DirectorySearcher = New DirectorySearcher(oroot) Dim oresult As...
0
9592
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9425
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10230
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10058
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9870
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8886
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5313
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5450
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3576
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.