i get a error when update user attributes the error is "General access denied error " the code is Dim strAttrName As String = Me.TextBox1.Text Dim strAttrValue...
Thanks All specially Joe, for helping me out earlier; I have two more queries; I am using the same thread cause the scenario, server and programming language...
... Is "bindEntry" valid after this call?? E.g. is it != Nothing?? ... Is "o" valid, != Nothing, after this call?? If it's "Nothing", then obviously you can't...
... You'll need to cast the "o" to a valid IADsUser interface - the basic .NET type "object" doesn't know anything about a "ChangePassword" method! Dim oUser...
One other thing to remember is that SetPassword and ChangePassword are AD-specific functions. They aren't going to work on a non-AD LDAP directory under any...
Hi, I am using the method I post below in a web service to recursively get all the groups (direct and indirect membership) a user belongs to. The thing is that...
I never recommend recursive traversal of memberOf to expand group membership. It has the following problems with it: - Doesn't get primary group - Can include...
Hi Joe, Thanks for the tip, I think I have that sample code stored around here. I will get over it and will let you know. Thank you, Nacho ... From: Joe Kaplan...
can u please send the link to the sample code..or maybe upload it to the yahoogroups.. Thanks, Sumaira ignacio.pita@... wrote: Hi Joe, Thanks for the...
Hi all; question 1) i can updated user attributes over asp.net but i enabled anonymous access. but i suppose that is a security problem. i want to do update...
hi; i have a question abot windows 2003 active directory. so, we have a computer laboratuar at my university. each student have an acoount in server. we wanna...
Hello All, I have an application that will allow me to import users/groups from Active Directory and save them to my database. Now I am trying to modify my...
You can actually change poll for deletions by searching in the deleted objects container. This is possible with LDAP API or IDirectorySearch. .NET doesn't...
Can you explain what your security model for your application will be? There are basically two approaches: Do you plan to allow the users who log into the site...
Hello, all! Is it possible to access Microsoft's Active Directory or is it not a true LDAP implementation? I've tried with no success. -- Ñ...
Artem Chernodub
chernodub@...
Nov 3, 2004 10:37 am
2531
Yes of course you can Microsoft Active Directory is LDAP v3 compliant. You say you have tried and it's not working could you please post the following so that...
Dear Carlos, thank you for a quick response. Generally, I'm only beginning studying ASDI and LDAP technologies. While writing "I've tried with no success" I...
Artem Chernodub
chernodub@...
Nov 3, 2004 11:53 am
2533
You can use change notification using a specific dn as base. Thus if any changes occur below that DN, your program will be notified. I have sample code in C++....
hi joe; for example there is a computer laboratuar , a windows 2003 server and a web page that using active directory accounts to authenticate system. for...
There was a guy on micrsoft.public.adsi.general who just posted a question on changing passwords in AD with JNDI, and he was able to get it working. I'm sure...
Probably the easiest thing to would be to capture the user's name and password in your forms authentication and then use those credentials for binding to...
Dear friens, as has been written at Microsoft's web-site about Active Directory Features, in department "Active Directory Service Interfaces (ADSI)" ADSI...
Artem Chernodub
chernodub@...
Nov 3, 2004 6:25 pm
2538
Hi, I have been trying to add my own user property to the user class. But am unable to do it via ADAM ADSI EDIT. I followed a link to add an attribute as...
hi; i try to change update change "sn" attribute this code. bu it throws an exception like this " general access denied error" i use windows application to do...
It looks like your current security context doesn't have rights to modify that attribute. If you try to change that with AD U&C or ADSIEdit, do you get the...
hi joe it is not clear for me. van yu explain pls. i think you mean, first user logon. and the user can changes her/his attributes? am i right? Joe Kaplan...
i get same error every account. Joe Kaplan <joe@...> wrote: It looks like your current security context doesn't have rights to modify that attribute....