Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

Expression Encoder may show error when publishing large file to WebDav


Symptoms

  • You are using Expression Encoder to encode video with a Transcode Project.
  • You are publishing the video using WebDAV.
  • The encoded video is larger than 30 Mbytes.
Expression Encoder may show an error - "A WebDav publishing error occurred: the remote server returned an error: (404) Not Found”.

↑ Back to the top


Cause

There is a default maximum size limit for WebDAV uploads on the IIS server. The limit is 30 MBytes.  

↑ Back to the top


Resolution

On the IIS server use Notepad to open the Web application configuration file Web.config. By default, this file is in the following folder:
Inetpub\wwwroot\wss\VirtualDirectories\VirtualDirectoryFolder

Increase the value of maxAllowedContentLength in the requestLimits node. For example: <requestLimits maxAllowedContentLength="52428800"/>


Note: If your Web.config file does not already have the <requestLimits> node, you must add it in the proper place in the section hierarchy, which follows this structure:

<configuration>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="52428800"/>
</requestFiltering>
</security>
</system.webServer>
</configuration>

↑ Back to the top


More Information

For more information about the requestLimits node see http://msdn.microsoft.com/en-us/library/ms689462.aspx.

↑ Back to the top


Keywords: kb

↑ Back to the top

Article Info
Article ID : 2567058
Revision : 1
Created on : 1/7/2017
Published on : 6/20/2011
Exists online : False
Views : 68