IIS Configuration and Permissions for remote file attachments
September 1, 2010
While setting up some advanced capabilities of DovetailAgent, we ran into some IIS/Windows permission issues. This post is to capture and share some of the learnings. To start with, Kevin Miller has a good post on installing Classic ASP web application on IIS7. The “advanced” capabilities I’m referring to was setting up file attachment uploads, and saving those files off to a permanent file storage area, accessed by a UNC drive such as \\fileServer\attachments Environment: Windows Server 2008, Dovetail Agent 4.3 File Uploads The way file uploads work is that the file is first uploaded to the web server where DovetailAgent is running. Then, the application moves the file to the permanent storage location, which is commonly a share on a different server. The application also creates directories and subdirectories where needed. So if your base attachment directory is\\fileServer\attachments,…