Search the web
Sign In
New User? Sign Up
ADSIANDDirectoryServices · ADSI and System.DirectoryServices Q&A
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 2412 - 2441 of 4629   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2412
The best possible thing for real Windows/Active Directory users is to create your own custom derived UserNameTokenManager class that uses the LogonUser API or...
Joe Kaplan
joekaplan2003
Offline Send Email
Oct 1, 2004
3:41 pm
2413
Thanks Joe for this email For some reasons and these messages dont show up for long in your mail boxes and hence I have been continuing to post messages to all...
Sumaira Ahmad
sumaira_ahmad
Offline Send Email
Oct 1, 2004
9:40 pm
2414
Hi Joe, I wanted to update you with the latest that I have accomplished following your email. I have implemented the following- I am able to enter as username...
Sumaira Ahmad
sumaira_ahmad
Offline Send Email
Oct 3, 2004
8:33 pm
2415
Is the ADAM user in the Readers role group in ADAM? By default, ADAM users don't have access to read any objects in a partition. Regarding the WSE 2.0...
Joe Kaplan
joekaplan2003
Offline Send Email
Oct 3, 2004
10:15 pm
2416
Hi Joe, Thank you so much for your reply. And thanks for informing me about the Readers role. I guess all we need to do to enable it is : Go to the partition...
Sumaira
sumaira_ahmad
Offline Send Email
Oct 4, 2004
4:27 am
2417
That looks fine to me. You can improve the code slightly by adding a specific catch for the COMException that is thrown and a check for the actual bad...
Joe Kaplan
joekaplan2003
Offline Send Email
Oct 4, 2004
5:45 am
2418
In VB6 using ADSI I could set the account expiration date by doing this: mobjUSR.AccountExpirationDate = mstrAccountExpires (ex. "10/31/2004") Can someone tell...
yantran52
Offline Send Email
Oct 8, 2004
7:26 am
2419
I am trying to write a VB.NET 2003 Web Application, that populates a listbox with group names. My directorysearcher seems valid based on the count, but I...
Kavanagh, John J.
jkavanagh58
Offline Send Email
Oct 8, 2004
5:08 pm
2420
Related it this old thread, check out Keith Brown's AclUIAdapter at http://pluralsight.com/blogs/keith/archive/2004/10/04/2636.aspx ... From: Joseph Shook...
Joseph Shook
joseph_shook...
Offline Send Email
Oct 9, 2004
8:17 pm
2421
... Well, depends on which name you want to use - you'll have to tell your DirectorySearcher to retrieve it while enumerating the groups, too. Something like...
Marc Scheuner
m_scheuner
Offline Send Email
Oct 11, 2004
10:03 am
2422
Please I need help. This is my code: Dim DirectorioActivo As DirectoryServices.DirectoryEntry Dim UsuariosDirectorio As DirectoryEntry Dim Elementos As...
ramon_barron@...
ramon_barron
Offline Send Email
Oct 11, 2004
4:28 pm
2423
Thanks, I will give that a try. ... listBox1.Items.Add(oSR.Properties["name"].Value.ToString()); ... ===== *================================================== ...
Kavanagh, John J.
jkavanagh58
Offline Send Email
Oct 12, 2004
5:26 pm
2424
'Value' is not a member of 'System.DirectoryServices.ResultPropertyValueCollection'. ... listBox1.Items.Add(oSR.Properties["name"].Value.ToString()); ... =====...
Kavanagh, John J.
jkavanagh58
Offline Send Email
Oct 12, 2004
5:46 pm
2425
You can use the Value property on the PropertyValueCollection (which comes from the DirectoryEntry class), but not on the ResultPropertyValueCollection (which...
Joe Kaplan
joekaplan2003
Offline Send Email
Oct 12, 2004
6:03 pm
2426
Which is the reason I posted originally. Granted I am not much of a programmer, more of a systems guy trying to use programming. I thought I had the ...
Kavanagh, John J.
jkavanagh58
Offline Send Email
Oct 12, 2004
7:01 pm
2427
Sorry, I didn't get that you were fighting with the syntax. It would go ... listBox1.Items.Add((string) oSR.Properties["name"].[0]); Note that you might not...
Joe Kaplan
joekaplan2003
Offline Send Email
Oct 12, 2004
7:29 pm
2428
... Ah, thanks Joe for straightening me out - in that case, you'll need to do this: DirectorySearcher oDS = new DirectorySearcher ...
Marc Scheuner
m_scheuner
Offline Send Email
Oct 13, 2004
10:37 am
2429
Okay, now I am really lost, I guess I will just stick with vbscripts ... listBox1.Items.Add(oSR.Properties["name"].ToString()); ... ...
Kavanagh, John J.
jkavanagh58
Offline Send Email
Oct 13, 2004
2:28 pm
2430
Hi John - I think what has confused you (just as Marc explains below) is the difference between the PropertyValueCollection of the DirectoryEntry class and the...
awdev
Offline Send Email
Oct 13, 2004
7:40 pm
2431
Hi John - I think what has confused you (just as Marc explains below) is the difference between the PropertyValueCollection of the DirectoryEntry class and the...
awdev
Offline Send Email
Oct 13, 2004
7:40 pm
2432
Of course the list box line should be YourListBox.Items.Add(stemp) ... _______________________________ Do you Yahoo!? Declare Yourself - Register online to...
allan wolff
awdev
Offline Send Email
Oct 13, 2004
7:58 pm
2433
I am trying to authenticate using VB6 to an LDAP server (iplanet) using ADAM. I've done something similar in Java and the authentication method I used was...
phsdreynolds
Offline Send Email
Oct 13, 2004
8:07 pm
2434
Dustin - If authentication is not required to search on your server, why don't you try the Anonymous authentication flag(=16)? I don't think you want to use...
awdev
Offline Send Email
Oct 13, 2004
8:22 pm
2435
Oops! That was a .NET framework page, but the analog for ADSI is at url=/library/en-us/adsi/adsi/ads_authentication_enum.asp ADS_NO_AUTHENTICATION: Request no...
allan wolff
awdev
Offline Send Email
Oct 13, 2004
8:32 pm
2436
You want to use 0 for this flag. This will force an LDAP simple bind. iPlanet probably doesn't support any of the AD proprietary settings like SECURE,...
Joe Kaplan
joekaplan2003
Offline Send Email
Oct 13, 2004
9:41 pm
2437
Thank you very much ... listBox1.Items.Add(oSR.Properties["name"].ToString()); ... listBox1.Items.Add(deObj.Properties["name"].Value.ToString()); ... ===== ...
Kavanagh, John J.
jkavanagh58
Offline Send Email
Oct 14, 2004
1:04 am
2438
Hi, I want to add entry in Active directory using Asp.net.But we r accessing Active directory through a middleware server,& it requires ssl support for adding...
ashhh_2
Offline Send Email
Oct 14, 2004
7:25 am
2439
Hi there, Could you give us some more information about your environment? What type of certificates will you be using for your SSL connections; will the...
Carlos Magalhaes
carloshoshm
Offline Send Email
Oct 14, 2004
9:21 am
2440
Hi, If we dont have GC installed and dont have SSL over ADAM, will tokengroups property work. Or can u suggest some other simpler way to know which groups a...
Sumaira Ahmad
sumaira_ahmad
Offline Send Email
Oct 14, 2004
5:11 pm
2441
The trick i was referring to with GC and ADAM token groups doesn't require a GC per say. It is really a hack to work around a bug/short-coming in ADSI. Here...
Joe Kaplan
joekaplan2003
Offline Send Email
Oct 14, 2004
6:41 pm
Messages 2412 - 2441 of 4629   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help