markknowsley
Programmer
Here's my problem; I'm trying to write a small web - based application that will update some of the fields in Active Directory. The app uses ASP.NET. The problem is that I keep getting a 'General Access Error' when my app tries to commit the changes. Microsoft states that this is a problem with the way that ASP.NET authenticates against Active Directory, and instead of using the domain account that I've specified in my code it keeps trying to use anonymous access.
I've been thinking that maybe I could write the code into a C# class library and install this into the GAC, and then call the class from within my ASP.NET page. But I don't want the ASP.NET worker process anywhere near the GACed library. Has anyone done anything like this before? Any suggestions?
I've been thinking that maybe I could write the code into a C# class library and install this into the GAC, and then call the class from within my ASP.NET page. But I don't want the ASP.NET worker process anywhere near the GACed library. Has anyone done anything like this before? Any suggestions?