I have created a virtual Directory (IIS 7.0), which points to a network share. This virtual directory resides under my web application root.
I tried using anonymous access with domain credentials. Also, I tried using impersonation as below...
<identity impersonate="true" userName="<supplied username>"
password="<supplied password>" />
ISSUE: Application is always using IUSR to connect to that share and getting "ACCESS DENIED". I need to force my application to Use domain name above.
UPDATES
1. While running procmon I can see "FAST IO DISALLOWED" message everytime before access denied. Not really sure if its related.
2. I suspect symptoms of Double Hop Issue here. But don't know how really to validate it or how to get around it without really changing authentication to Kerbros.
Thanks!