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...
Show off your group to the world. Share a photo of your group with us.

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 319 - 348 of 4629   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
319
Yes you can do this, and it does make sense, is this application internet based or intranet based (documents online could mean either) because if it was...
Carlos Magalhaes
carloshoshm
Offline Send Email
Apr 1, 2003
2:10 pm
320
This is an Internet solution. The solution you describe would work, however, our concept of a document is conceptual, not physical. We wouldn't be accessing...
Griffin Caprio
griffinc18
Offline Send Email
Apr 1, 2003
2:49 pm
321
I don't understand this statement : " he solution you describe would work, however, our concept of a document is conceptual, not physical." Could you elaborate...
Carlos Magalhaes
carloshoshm
Offline Send Email
Apr 1, 2003
2:50 pm
322
Sure: We have a document distribution service. Clients scan documents into PDF format and upload them into our system. Once in our system, they can deliver...
Griffin Caprio
griffinc18
Offline Send Email
Apr 1, 2003
3:11 pm
323
Hi all, Am very new to ADSI/LDAP etc and would appreciate any help with this. I have set up iPlanet Directory Server (on my own local machine to test) and am...
Trifidz
Offline Send Email
Apr 1, 2003
5:40 pm
324
This can be very tricky. You could facilitate this in AD or other LDAP directories but it would cause you more head aches than just storing a Database with...
Carlos Magalhaes
carloshoshm
Offline Send Email
Apr 2, 2003
9:09 am
325
Can you post the Port numbers you have tried - 389 port is not only for anonymous access it's the default LDAP communications port, there are different ports...
Carlos Magalhaes
carloshoshm
Offline Send Email
Apr 2, 2003
9:18 am
326
Argh.... I think you are right.... Things are going to get real tricky when users can specify their own groups, like "My Cool Reps". Also, there are a ton of...
Griffin Caprio
griffinc18
Offline Send Email
Apr 2, 2003
3:13 pm
327
Not a problem, AD is very customizable but, when it comes to practicality and maintenance I would say you better off with SQL in this case. Sorry about that! ...
Carlos Magalhaes
carloshoshm
Offline Send Email
Apr 2, 2003
3:14 pm
328
The one bright side is that .NET has some easy and powerful security classes that we can use. It's just the management....... -Griffin ... === message...
Griffin Caprio
griffinc18
Offline Send Email
Apr 2, 2003
5:57 pm
329
I doing a search here is the code Dim src2 As New DirectorySearcher("(&(objectCategory=Person) (objectClass=user))") src2.SearchRoot = de2 src2.SearchScope =...
mllam_98
Offline Send Email
Apr 2, 2003
5:57 pm
330
What does the directory structure look like that you are accessing . i.e. do you have : OU = Users ... What I am trying to determine is the hierarchy of the...
Carlos Magalhaes
carloshoshm
Offline Send Email
Apr 2, 2003
7:08 pm
331
I have an ou called Health inside that ou there some users then there are some nested ou's which contain more users one of ou is called disabled accounts I...
mllam_98
Offline Send Email
Apr 2, 2003
8:40 pm
332
... No, you cannot do this. If you select to search a subtree, everything from the root directory entry on downwards is included in the search - you cannot...
m_scheuner
Offline Send Email
Apr 3, 2003
5:37 am
333
Carlos, Thanks for replying to my post. I've actually figured out how to authenticate users since I last posted. In case anyone else has the same problem, here...
Trifidz
Offline Send Email
Apr 3, 2003
11:03 am
334
Total brain fart on my end. It's not important and I knew that, and I can't explain why forgot it. -Charles ... From: Ryan Dunn [mailto:dunn_rp@...] ...
Charles Oppermann
chuckop
Offline Send Email
Apr 3, 2003
3:40 pm
335
Thanks for the help I was afraid that ehat i wanted to do was impossible. I have found a work around that works for me. Here is the code if anyone is...
mllam_98
Offline Send Email
Apr 3, 2003
6:08 pm
336
We have an OU for "accounts to be deleted" - we move users and computers there before finally deleting them - but this is not in the main tree of OUs so it...
Steve Rochford
steve_rochford
Offline Send Email
Apr 4, 2003
12:29 pm
337
Hi, I have been digging throught the samples and doco on using VB.NET to access AD. What I want to do is to access the users objects, and get details such as ...
aussie boy
b110271@...
Send Email
Apr 6, 2003
4:52 am
338
I have written some code to search for and display the current displayname in active directory. My problem is that the code works just fine on the local...
spaceg0d
Offline Send Email
Apr 7, 2003
9:14 am
339
object reference not set to an instance of an object Could mean a number of different things like, you are trying to reference to an object that is empty or...
Carlos Magalhaes
carloshoshm
Offline Send Email
Apr 7, 2003
9:30 am
340
What about just using the sAMAccoutName of the user , this is very unique, or if you want to get SUPER unique you could use the Native GUID of the object,...
Carlos Magalhaes
carloshoshm
Offline Send Email
Apr 7, 2003
9:35 am
341
You may also use AD Schema to add extra field like UserID for your AD Users Properties. Sure you may have to create one small program to auto-generate the ID ...
Ken Lin
KenKHLin
Offline Send Email
Apr 7, 2003
1:19 pm
342
That's what I would have thought too, except for the fact that the search works perfectly fine on the machine where iis is installed. Btw, I am searching ad...
spaceg0d
Offline Send Email
Apr 7, 2003
2:16 pm
343
Try adding explicit credentials to your DirectoryEntry. It might be a delegation of credentials issue and this will troubleshoot it. Use: deDomain.User =...
Ryan Dunn
dunn_rp
Offline Send Email
Apr 7, 2003
3:19 pm
344
Yep, that worked! Thanks a bunch. Any idea though why it didn$B!G(Bt work with impersonate on? ... From: Ryan Dunn [mailto:dunn_rp@...] Sent: Monday,...
Brent Mills
spaceg0d
Offline Send Email
Apr 7, 2003
4:29 pm
345
When you are browsing the IIS server remotely, your credentials have to be delegated between the IIS server and the AD domain controller. You were likely ...
Ryan Dunn
dunn_rp
Offline Send Email
Apr 7, 2003
4:40 pm
346
I've read about delegating authority in sql server but I didn't connect the dots with IIS. Makes perfect sense now :) Thanks! ... ...
spaceg0d
Offline Send Email
Apr 7, 2003
5:24 pm
347
Hello people, I have an interesting task. In May, our company will be going to native mode in win2k. In doing so, a few issues have come up that need to be...
Manuel Bermudez
mannybz
Offline Send Email
Apr 8, 2003
7:33 pm
348
Hi Manuel ... Well, you'll need to do two things really: 1) Enumerate all the users to be manipulated 2) Actually carry out the code to manipulate the user, on...
m_scheuner
Offline Send Email
Apr 9, 2003
7:40 am
Messages 319 - 348 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