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

I am following these steps : [https://github.com/Microsoft/cpprestsdk/wiki/How-to-build-for-Windows](url) from the documentation. I added all dependendies in the manifest file `vcpkg.json`: ``` { "dependencies": [ "cpprestsdk", "zlib", "openssl", "boost-system", "boost-date-time", "boost-regex", "boost-interprocess",...

I have been trying to build cpprest with websockets support from source, no success. 1) The included vcpkg submodule is outdated, impossible to use. 2) Rest of the code doesn't...

Minimal example: ```cpp #include #include #include int main() { std::cout ------ Build started: Project: restaurant-data-app, Configuration: Release x64 ------ 1>restaurant-data-app.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: __cdecl web::websockets::client::details::websocket_client_task_impl::websocket_client_task_impl(class...

When the library is built with boost 1.88 and link-time optimization, I get an immediate segfault in any program linked with cpprestsdk. I have patched the library to be able...

**Issue:** Under high load conditions, the HTTP listener in cpprestsdk becomes unresponsive. It stops accepting new GET/POST requests, only completing the in-flight ones. The listener cannot be restarted; it requires...