Ask a Question related to ASP.NET Security, Design and Development.
-
Rich #1
calling adsi from aspnet
We have an aspnet app that allows the user to change their password. We are
using windows authentication on win2003.
In the sample code below the first call to WriteInfo call properly echos the
logged in user.
The second call to WriteInfo (post ChangePassword) however lists the
identity as NT
AUTHORITY\NETWORK SERVICE.
How can we ensure that the identity is not switched during this call?
identity = WindowsIdentity.GetCurrent()
ApplicationLog.WriteInfo("identity before ChangePassword" & identity.Name)
entry.Invoke("ChangePassword", New Object() {oldPassword, newPassword})
identity = WindowsIdentity.GetCurrent()
ApplicationLog.WriteInfo("identity after ChangePassword" & identity.Name)
Thanks
Rich M.
Rich Guest
-
calling ADSI objects from WebApplication
Hello, I got this weird problem. I have an intranet application that needs to communicate with Active directory. Authentication to Web application... -
ADSI & ASP Updates
Hi All, We have written a set of functions to retrieve the current userlist from Active Directory and it works just fine. (We did have a few... -
ADSI with PHP
Hi everyone, I'm pretty new to using the COM functionality in PHP. I want to administer my PC using PHP together with ADSI. My first problem is... -
ADSI
Hi, I have found some code that authenticates users agains a domain using ADSI. I then redirect to another page and pass the username they have... -
Restricting ASPNET ACLs without breaking ASPNET (newbie-ish)
Scenario: We have a library with objects that host Jscript for the execution of complex validation code. This library is being called by an ASP.NET...



Reply With Quote

