What settings are required to perform the following actions?
IIS6 server is on Domain1
User access from Domain2, for example Domain2 \ User
I want
WindowsIdentity ident = WindowsIdentity.GetCurrent();
to return Domain2 \ User not Domain1 \ IUSR_SERVER
Current settings
I have IIS authentication configured as "Integrated Windows Authentication", but everything is clear, this works fine on the same server as the IIS server.
In web.config:
<authentication mode="Windows"/> <identity impersonate="true"/>
The cross domain of these parameters requests a login.
NikolaiDante
source share