cpprestsdk icon indicating copy to clipboard operation
cpprestsdk copied to clipboard

The C++ REST SDK is a Microsoft project for cloud-based client-server communication in native code using a modern asynchronous C++ API design. This project aims to help C++ developers connect to and i...

Results 217 cpprestsdk issues
Sort by recently updated
recently updated
newest added

When I start http_listener (see code below) with an already bound port, on windows it throws http_exception, but on linux it throws some boost exception. Also if I start two...

I am building the sample program with cpprestsdk on ubuntu 18.04, but while running on ubuntu 20.04 it crashes with the following stack trace Thread 3 "sample" received signal SIGSEGV,...

calapsed when call httphandler.open().wait() in win7

- on 32bit platforms size_t is not enough to support files with size greater than 4GB.

datetime::from_string fails to parse ISO 8601 timezone part format +-XXXX and +-XX:XX. For example: utility::datetime::from_string(utility::conversions::to_utf8string("2021-07-26T21:26:00Z"), utility::datetime::ISO_8601).to_string(utility::datetime::ISO_8601)); correct: 2021-07-26T21:26:00Z utility::datetime::from_string(utility::conversions::to_utf8string("2021-07-26T21:26:00+00:00"), utility::datetime::ISO_8601).to_string(utility::datetime::ISO_8601); failed: 2021-07-26T20:00:00Z utility::datetime::from_string(utility::conversions::to_utf8string("2021-07-26T21:26:00+0000"), utility::datetime::ISO_8601).to_string(utility::datetime::ISO_8601); failed: 2021-07-26T20:00:00Z

Hi, I am trying to build a server which sends a continuous video stream in the response. The stream does not come from a file, but is dynamically generated by...

This issue is related to the following: https://github.com/Azure/azure-storage-cpp/issues/374 We hit a segfault while performing performance test with multiple threads (8 sessions) uploading 16 blobs simultaneously to the same bucket. Again...

At present when we create a web_socket client of type websocket_callback_client then automatically a lot of threads are created by default for handling different actions of connection. In my case...

The ambient_scheduler may not be the desired scheduler to schedule functions on, but _ScheduleFuncWithAutoInline does not offer any other option. Provide a means to select a desired scheduler and fall...