Monday, August 11, 2014

Operation not Allowed error for files over 200kb in IIS. Error: 80004005

Operation not Allowed error for files over 200kb in IIS

Document ID: 2711HQ

Issue:

An 'Operation not Allowed' error occurs when Eudora Web Client is installed on IIS while trying to attach files over 200k. The error commonly associated with this problem is:

Request object error 'ASP 0104 : 80004005'

Operation not Allowed


Solutions

<system.webServer>
        <defaultDocument>
            <files>
                <add value="publish.htm" />
            </files>
        </defaultDocument>
        <asp scriptErrorSentToBrowser="true">
            <limits maxRequestEntityAllowed="10485760" />
        </asp>
        <staticContent>
            <mimeMap fileExtension=".appcache" mimeType="text/cache-manifest" />
            <mimeMap fileExtension=".mp4" mimeType="video/mp4" />

        </staticContent>
        <httpErrors errorMode="Detailed" />
    </system.webServer>


No comments:

Post a Comment