We have developed the GroupService(Webservice developed in VB.NET) code mainly dealing with group related operations like adding groups, adding user to groups...
Ah, my own company! Always funny meeting in public like this. :) Could you show an example of the code that doesn't work? It sounds like one of the normal...
Hello All, In C# and .Net 2003 environment, I are using LDAP to get information of users and groups from Active Directory of Windows server. In some domains...
... Well, question is: what is special / different about those domains that cause you problems? Is there a full two-way trust between your domain where your...
Thanks Marc. Most of time, accessing from console app is OK, but will get error from Windows forms and aspx pages. If this is permission issue, how can I check...
The easiest way to check to see if it is a permissions issue is to supply hard-coded credentials for testing and see if that makes the problem go away. If so,...
Thanks Joe. Why is objectSid so different from other properties? ... supply ... problem go ... without ... have the ... that case, ... that is a ... domain...
That's a good question. It is possible that there are more ACL restrictions on this attribute than on the other attributes you are searching for. Another...
Hi Joe, Thank you very much. ... restrictions ... for. ... schema ... schema. ... errors. ... instance is ... server is down ... that error ... problem, but ...
In our developement environment here and in testing, aside from issues arrising from the (disabled by default) anonymous LDAP login, I have seen issues with...
I am looking for some help Pl Guide me. I am new in using ADSI I need to Valid User name and password in ASP Application.I am getting User Name and Password in...
I use a non-freeware utility called ScriptLogic DesktopAuthority, which works quite well to accomplish this task .ie. You can specify rules or validation logic...
Is there a better code practice to use for automating account creation and properties? ie. ADSI versus WMI or another? I'm tryin to figure out using ASP.Net...
Thanks Joe and Brendan for all your information, it helps me a lot. I sent a test program to one of customers and the following is what has been found: 1....
I'm actually not a big fan of either approach (using directoryEntry(LDAP://domain.com) or DirectoryEntry()) because neither is explicit about what you are...
I am interested in any advice for getting started with scripts to automatically create Exchange/ADS 2003 users. My basic idea is to provide IT STAFF with a web...
Hi, why I go the following error Unknown error (0x80005000) Description: An unhandled exception occurred during the execution of the current web request....
Hey Samy, 0x80005000 translates to ADS_BAD_PATH that means that your path is not correct (95% of the time) Can you please post the entire code and if you pass...
Can someone help me. I need to Valid User name and password in ASP Application.I am getting User Name and Password in Text Boxes How can I check Valid...
some one help me.through the following code i am validating valid user or not but i how can i check valid password com.CommandText = "SELECT cn FROM 'GC://...
... Given a OU as an LDAP path (strOUPath), use this: // bind to the OU DirectoryEntry deOU = new DirectoryEntry(strOUPath); // list all the child objects of...
... This will at best validate that a user of the given name exists - however, it will *NOT* look at the password! You will need to use something like the...
Ok, I registered and recieved my OID from Microsoft so I can extend our ADAM scheme. I used the ADAM Scheme MMC to add several new attributes, however I cannot...
Ray, The user object is a USER CLASS Object. What you will need to do is decide the following: Scenario: Attributes you addeded: Attribute1 Attribute2 ...
Just to point out something here for people that might not be aware of this. Did you know that you can generate your own OID? The only time you really want...
There are essentially three ways of doing this. There are advantages and disadvantages to each. 1. Use the DirectoryEntry. Pass the username and password in...
When you use the OID tool, you're assigning numbers from using a branch assigned to Microsoft by the Internet Assigned Number Authority (www.iana.org...
Exactly, I did not mean to imply running OID.exe for each schema extension. Rather, run it only once and then derive your extension's OID from that. The same...