0

I am using restbed for http client in my c++ application and want to POST files which are in excess of 50 MB to a server. Is there any way to accomplish it.

Thanks

  • This may in fact be tricky (memory hog) with the current client functionality. Please raise a feature request on the GitHub issue tracker. – Ben Crowhurst Jul 21 '16 at 20:53

1 Answers1

0

I'd suggest having a look into Chunked Transfer Encoding.

You will find an example here.

NutCracker
  • 11,485
  • 4
  • 44
  • 68
Ben Crowhurst
  • 8,204
  • 6
  • 48
  • 78