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...
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...
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...
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...
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...
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...
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...
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...
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! ...
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...
I doing a search here is the code Dim src2 As New DirectorySearcher("(&(objectCategory=Person) (objectClass=user))") src2.SearchRoot = de2 src2.SearchScope =...
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...
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...
... 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...
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...
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@...] ...
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...
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...
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@...
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...
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...
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,...
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 ...
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...
Try adding explicit credentials to your DirectoryEntry. It might be a delegation of credentials issue and this will troubleshoot it. Use: deDomain.User =...
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,...
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 ...
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...
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...