473,785 Members | 2,844 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 2014
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
1675
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
4029
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
3332
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
26877
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
9645
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
9480
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,...
1
10093
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9952
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
8976
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
5381
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
5511
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3654
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2880
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.