Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

resume uploads using HTTP?

Tags:

http

post

upload

Is it possible to resume interrupted uploads using HTTP Post? I am working on a project that uploads several files to a HTTP server. Thanks.

like image 378
0pcl Avatar asked Dec 02 '09 01:12

0pcl


1 Answers

Assuming you have control at a low enough level on both client and server sides of this project you could achieve this via Content-Range headers in your POST (or PUT) requests that send the data.

like image 58
imaginaryboy Avatar answered Oct 13 '22 19:10

imaginaryboy