I am using angular 7 for front end and calling web api built using asp.net mvc deployed in Azure web app services.
For a specific API for uploading file, I get "Http failure response for {APIURL}: 0 Unknown Error" where 0 is response status. If the file is smaller than 400MB, this works fine. However for files larger than 400MB I get the above error on front end after 3-4 minutes. But at the backend, web API continues to run and completes in around 4-5 minutes total time.
I am using HttpClient requests from angular. Any pointer will be helpful.
Thank you!