R – Virtual Directory pointing to UNC share

iis-6virtual-directory

I have an app that uploads documents to the server through the standard

When sent my application to the production server, I found out that they had the server load balanced. My solution to this was to place the upload directory into a network share and then create a virtual directory pointing to the share.

I have set permissions on the share and the file itself, but I keep getting "access denied" whenever I try to upload a document.

Where could I be missing permissions? Is it possible that IUSR needs to have access to the share?

Thanks.

Best Answer

FYI,

The answer to this solution for me was to setup temporary impersonation with a user account that had access to the share, the folder and the virtual directory.

Here's a link to the code that worked for me:

http://support.microsoft.com/kb/306158#4

Related Topic