Hi,
I've an intranet application which use integrated windows authentication (domain account).
The application needs to upload a file and save it to a folder in another server. However, I encountered Access Denied error while trying to save the file in the folder.
All the necessary rights have been given to the domain account to access this remote server.
Have tried to access the same folder from explorer and it works. Everything is working fine in development server but not UAT server
Here's my settings
1) Web.Config
<identity impersonate="true" />
<authentication mode="Windows" />
2) IIS
Unchecked “Enable anonymous access”
Unchecked “Digest authentication”
Unchecked “Basic authentication”
Unchecked “.Net passport authentication”
Checked “Integrated Windows Authentication”
3) Browser Setting
Checked “Enable Integrated Windows Authentication” (Internet Options – Advanced)
Choose “Automatic logon only in Intranet zone” (Internet Options – Security – Local intranet)
Did I miss out anything?
How do I check (in code) which account is being used to access the server?
Appreciate your help. Thanks