When uploading large video files, the progress bar goes to 100% and then the control hangs. If I wait long enough, then the FileUploaded event will fire.
After a 700MB was uploaded, it took an additional 8 minutes for the upload to complete. After a 30MB file was uploaded, it took an additional 15 seconds to complete. Reading the files from cloud storage is fast.
Web.config:
<httpRuntime enableVersionHeader="false" targetFramework="4.6" maxRequestLength="1024000" executionTimeout="36000" maxQueryStringLength="4096" />
<telerik:RadCloudUpload runat="server" ID="RadCloudUploadVideo" ProviderType="Azure" RenderMode="Auto" AllowedFileExtensions=".mp4, .webm, .ogv"Localization-SelectButtonText="Select MP4, WebM, or Ogv file to Upload" HttpHandlerUrl="~/Code/handlerVideoUpload.ashx" OnClientFileUploaded="fileUploaded"><FileListPanelSettings RenderButtonText="true" /></telerik:RadCloudUpload>
Any ideas on what is causing this or how to troubleshoot?
