I have a c# class which uses the WindowsIdentity namespace to return details of the current Active Directory user. This is accessible through a web part on SPS and sure enough returns the desired record values specific to that user.
I have a classic ASP application which I would like to have inherit this functionality. After wrapping it up as a COM and registering it to the server, I created a Classic ASP page from which to call and display the details to the browser window.
My problem is that when this page is accessed from an authenticated user on a client machine the only user details it displays is that of the local machine.
How do I therefore alter my code so I can display the details of the user accessing the page from a client machine?