I am developing Azure Wep App (C# Wep Api 2.0).
This app will be used to receive file upload request & then save files in Azure blob & will create a record in Azure Database.
I am bit confused, whether I should opt for a method that will receives all the files in single request then I should process files 1 by 1 using async. OR I should opt for a method that will cater single file at a time and on client side I send files 1 by 1 to Wep App.
Also I am planning to implement Web Sockets for this, so that my files do not get lost while uploading. But I am not sure about this will work well or not?
Any other ideas to resolve this are welcome.
Thanks