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 4288 - 4317 of 4629   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
4288
I am adding AD support to an application. I have been switching back and forth between the WinNT and LDAP ADSI providers mainly because some information is...
tothebowlbaby
Offline Send Email
Jan 19, 2007
6:52 pm
4289
Well, honestly there is no advantage whatsoever to using the WinNT provider. That is, unless you are trying to work with local SAM accounts on the machine....
Ryan Dunn
dunn_rp
Offline Send Email
Jan 19, 2007
9:55 pm
4290
Thanks for the reply, Ryan. One very useful feature of the WinNT provider I have found is the memberOf attribute of user class object. While the LDAP provider...
tothebowlbaby
Offline Send Email
Jan 20, 2007
3:33 am
4291
It is because memberOf in LDAP is actually just reading the data stored in the directory in the memberOf attribute and primary group is not assigned via normal...
Joe Kaplan
joekaplan2003
Offline Send Email
Jan 20, 2007
5:01 am
4292
Hi, I wrote a vbscript that has been working fine for 2 years. Recently, some machines, but not all, have been getting the "80040E37 Table does not exist...
Bruce Krasnof
brucekrasnof
Offline Send Email
Jan 20, 2007
2:47 pm
4293
How is authentication supposed to work against this directory? Typically, with ADSI when you are binding to the directory, the default is Windows security....
Joe Kaplan
joekaplan2003
Offline Send Email
Jan 21, 2007
5:11 am
4294
Hi Joe, This Sun LDAP server allows anonymous searches of public attributes, so I never need to pass credentials for the simple lookups. The netstat idea is a...
Bruce Krasnof
brucekrasnof
Offline Send Email
Jan 21, 2007
11:30 am
4295
If I were you, I'd change your ADO connection object so you pass in "" for the username and password and set the auth flags for the anonymous auth setting (10...
Joe Kaplan
joekaplan2003
Offline Send Email
Jan 22, 2007
12:19 am
4296
Joe, I understand what you meant now. I'll make that change, my code all this time was too vague and assuming too much. thanks, Bruce...
Bruce R. Krasnof
brucekrasnof
Offline Send Email
Jan 22, 2007
5:09 am
4297
Joe, I'm having trouble using the "ADSI Flag" property for my ldap search. The constant for no authentication is 10, but when I leave that line in I get a...
Bruce Krasnof
brucekrasnof
Offline Send Email
Jan 22, 2007
6:39 am
4298
Joe, the netstat command is showing around 2,500 TIME_WAIT tcp statuses as I monitor it. Wow, I never realized how many ports on my machine were being used by...
Bruce Krasnof
brucekrasnof
Offline Send Email
Jan 22, 2007
10:03 pm
4299
That is generally a bad sign. When connection caching is working the way you want, there is only one socket opened to the server. It may be the case that...
Joe Kaplan
joekaplan2003
Offline Send Email
Jan 23, 2007
1:29 am
4300
Hi Joe, thanks for helping with this. I was reading up on the limitation on ephemeral tcp ports at ...
Bruce Krasnof
brucekrasnof
Offline Send Email
Jan 23, 2007
9:52 am
4301
It is really just the searching stuff that is going through more layers in script. The rest is probably a wash. With searching, .NET has a COM interop layer...
Joe Kaplan
joekaplan2003
Offline Send Email
Jan 23, 2007
3:36 pm
4302
Joe, thanks for the detailed explanation. I won't bother the list anymore with this problem, but if we figure it out, I'll post back. I guess if we need to...
Bruce Krasnof
brucekrasnof
Offline Send Email
Jan 23, 2007
4:10 pm
4303
Can anyone please let me know , which is better to access Edirectory, the ldap library for c# provided by novell or system.diretoryservices ?...
sbsabitha
Offline Send Email
Jan 23, 2007
7:36 pm
4304
Which is the best to go about, is it LDAP library or System.DirectoryServices Can anyone please give info on this? Thanks...
sbsabitha
Offline Send Email
Jan 23, 2007
7:37 pm
4305
If you are using .NET 1.x, then you should be using Novell's LDAP library. If you however can use .NET 2.0, I would recommend using ...
Ryan Dunn
dunn_rp
Offline Send Email
Jan 23, 2007
9:08 pm
4306
I don't really have much experience with the Novell LDAP library, so take this FWIW. My understanding is that their library is more of a low level LDAP...
Joe Kaplan
joekaplan2003
Offline Send Email
Jan 23, 2007
10:26 pm
4307
... You might want to download my Delphi ADSI Browser from the "Files" section here and have a look around at your Novell eDirectory. We used regular ADSI...
Marc Scheuner
m_scheuner
Offline Send Email
Jan 24, 2007
2:44 pm
4308
Hi All, I am developing role-based authorization application by using AzMan API to create roles, assign tasks to roles, and assign users to roles. The policy...
gaoming_fu
Offline Send Email
Jan 24, 2007
10:25 pm
4309
DirectorySearcher.FindOne() method produces an error "Object reference not set to an instance of an object" when I run the following code on WIN2003 Server. It...
tarakvbhatt
Offline Send Email
Jan 29, 2007
10:34 pm
4310
... Two questions: 1) Why are you setting the filter twice? Setting it again (to the "samAccountName=" value) will erase the first filter entry.... 2) Do you...
Marc Scheuner
m_scheuner
Offline Send Email
Jan 30, 2007
6:06 am
4311
Hello Marc, Can you please tell me about the starting point ? Actually I can successfully run the same code from my code but when I place it on the windows2003...
tarakvbhatt
Offline Send Email
Jan 30, 2007
3:10 pm
4312
Can you show the complete stack trace of the error message? It looks like your DirectorySearcher isn't the problem, so there must be something weird going on....
Joe Kaplan
joekaplan2003
Offline Send Email
Jan 30, 2007
6:24 pm
4313
You need a SearchRoot. Where are you initializing this? If you leave it null, it will try to open the default naming context, which can be problematic based...
Ryan Dunn
dunn_rp
Offline Send Email
Jan 30, 2007
6:24 pm
4314
Hello Joe, ... DirectoryEntry de = new DirectoryEntry(usersLdapPath, adLoginName, adLoginPassword); DirectorySearcher ds = new DirectorySearcher(de); ds.Filter...
tarakvbhatt
Offline Send Email
Jan 31, 2007
6:10 am
4315
Probably unrelated, but I think .FindOne() has a memory leak in the 1.0 and 1.1 Framework versions. Not sure about 2.0 Framework. -Bruce...
Bruce Krasnof
brucekrasnof
Offline Send Email
Jan 31, 2007
12:54 pm
4316
You are correct about the leak in 1.x. It is fixed in 2.0 though. :) Joe K. ... From: "Bruce Krasnof" <bruce.krasnof@...> To:...
Joe Kaplan
joekaplan2003
Offline Send Email
Jan 31, 2007
2:54 pm
4317
Can you show the full stack trace of the error? Also, what is the value you are using for the LDAP path? Joe K. ... From: "tarakvbhatt"...
Joe Kaplan
joekaplan2003
Offline Send Email
Jan 31, 2007
2:54 pm
Messages 4288 - 4317 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