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 186 cpprestsdk issues
Sort by recently updated
recently updated
newest added

GCC 10.x rightfully complains about out-of-bounds snprintf operation on 64bit systems, where size_t could be 64bit sized. Cast bytes_read down to 32bit and printf it without specifying input format Fixes...

When I send POST requests concurrently with >=200 threads, the rest server just stops response. The handle_post is: ``` void handler::handle_post(http_request message) { ucout

On ubuntu 16.04. I am using http_listener to handle some json requests. threadpool default number of threads is 40 and when i send more than 40 requests at the same...

pplx::task request_task = client.request(request); try { **web_response = request_task.get();** result = true; } catch (const std::exception& ex) { string_t errorMessage; ErrorMsg = L"Can't reach the confighub agent. " + utility::conversions::to_string_t(ex.what());...

Is there any way to set the number of workers for`http_listener`? I've tried ``` crossplat::threadpool::initialize_with_threads(8); ``` as suggested for http client (#883, #704). While it seems to limit the number...

Hi, OpenSSL has reported c_rehash scripts related vulnerability in "CVE-2022-2068" Reference: https://www.openssl.org/news/secadv/20220621.txt May I request to please let us know if there is any impact of "CVE-2022-2068" on cpprest functionality?...

I call the following function with a string (input webCall) that requests earnings data for a particular stock. I can send a request that asks for the 4 prior reports...

``` /// 0 if the read request is still outstanding, -1 if the request failed, otherwise the size of the data read /// into the buffer size_t _read_file_async(..... ``` ```...

PS> vcpkg install cpprestsdk cpprestsdk:x64-windows generates error ``` PS D:\workspace\cpp.machinarium\deps\cpprestsdk\vcpkg> .\vcpkg.exe install cpprestsdk cpprestsdk:x64-windows Computing installation plan... The following packages will be built and installed: * brotli[core]:x64-windows -> 1.0.9#2 *...

Is it safe to create a `websocket_callback_client` and setup the callback function in the main thread, then call `websocket_callback_client::send()` from a separate thread? I'm getting an unhandled exception `_REPORT_PPLTASK_UNOBSERVED_EXCEPTION()` and...