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
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
I'd suggest having a look into Chunked Transfer Encoding.
You will find an example here.