There is a need to reliably(*) upload big files (100 Mb+) from an ASP.NET MVC frontend to server. Any suggestions (techniques, JS libs, server ponents, etc) ?
(*) "Reliably" here means that in case the connection breaks, client and server should be able to pick up the upload from the point where it was interrupted so that no "upload restart" is needed.
There is a need to reliably(*) upload big files (100 Mb+) from an ASP.NET MVC frontend to server. Any suggestions (techniques, JS libs, server ponents, etc) ?
(*) "Reliably" here means that in case the connection breaks, client and server should be able to pick up the upload from the point where it was interrupted so that no "upload restart" is needed.
Share Improve this question asked Oct 10, 2011 at 14:00 ay.metalloay.metallo 8251 gold badge7 silver badges16 bronze badges 2- Try .... uploadify. – 001priyank Commented Oct 10, 2011 at 14:14
- Maybe I'm missing something, but it seems that tool was specifically designed to enhance multifile upload experience, not to deal with large files.. uploadify./faqs/… – ay.metallo Commented Oct 10, 2011 at 14:32
2 Answers
Reset to default 4Have you looked at http://aquantum-demo.appspot./file-upload. On the features list it have:
Resumable uploads: Aborted uploads can be resumed with browsers supporting the Blob API.
Chunked uploads: Large files can be uploaded in smaller chunks with browsers supporting the Blob API.
So it looks like what you need.
Raised a similar question with Microsoft recently.
They have a story for this in WCF WebApi in codeplex. It's currently at preview 5, but very functional.
Its stuff that will be in the next version of WCF.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745159628a4614331.html
评论列表(0条)