This is a migrated thread and some comments may be shown as answers.

Telerik Async Upload fails in IE11 on load balancer

3 Answers 89 Views
AsyncUpload
This is a migrated thread and some comments may be shown as answers.
ss
Top achievements
Rank 1
ss asked on 07 Apr 2016, 05:37 PM

We are using telerik control in our app with windows authentication and upload fails in load balancer with ie11. With Compatibility view it doesn't work either.     

One of the solution that has been posted in the online is to issue a HEAD or a GET request prior to the POST.

How can this be done with the Telerik control?

 

Thanks!

3 Answers, 1 is accepted

Sort by
0
Veselin Tsvetanov
Telerik team
answered on 12 Apr 2016, 12:32 PM
Hello,

As the specified unexpected behavior could be related to a known bug in Internet explorer, I would suggest you to try disabling the FileAPI that RadAsyncUpload uses by placing the following script on your page:
<script type="text/javascript">
    Telerik.Web.UI.RadAsyncUpload.Modules.FileApi.isAvailable = function () {
        return false;
    }
</script>

Regards,
Veselin Tsvetanov
Telerik
Do you need help with upgrading your ASP.NET AJAX, WPF or WinForms projects? Check the Telerik API Analyzer and share your thoughts.
0
ss
Top achievements
Rank 1
answered on 12 Apr 2016, 10:24 PM

Thanks for your response. 

Can you please explain what .isAvailable will do and how is it going to help us solve the problem?

Thanks again!

0
Veselin Tsvetanov
Telerik team
answered on 13 Apr 2016, 01:35 PM
Hi,

File.Api.isAvailable tells the RadAsyncUpload whether the browser supports the Web File API. With the suggested override it will always return false, so the RadAsyncUpload will use one of the other available Upload modules.

Regards,
Veselin Tsvetanov
Telerik
Do you need help with upgrading your ASP.NET AJAX, WPF or WinForms projects? Check the Telerik API Analyzer and share your thoughts.
Tags
AsyncUpload
Asked by
ss
Top achievements
Rank 1
Answers by
Veselin Tsvetanov
Telerik team
ss
Top achievements
Rank 1
Share this question
or