cpprestsdk
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...
Homebrew is installed in `/opt/homebrew` on newer M* macs. Adjust the search path of find openssl to look in the new location is the legacy path is not found.
I am unsure if this is a problem on my end or if it is the library fault. On compiling my code which is just the main method along with...
Attempting to use this package in ARM64 (HoloLens) as part of a C++ project will not build. See [Microsoft WebView2Browser]([https://github.com/MicrosoftEdge/WebView2Samples](https://www.bing.com/ck/a?!&&p=651a29e8ea8e7fd7JmltdHM9MTcyMjM4NDAwMCZpZ3VpZD0wMjE3NzQyNC0zMmI5LTYyNGItMmVhZC02N2NiMzNhZTYzMDEmaW5zaWQ9NTUxNQ&ptn=3&ver=2&hsh=3&fclid=02177424-32b9-624b-2ead-67cb33ae6301&psq=webview2+samples+github&u=a1aHR0cHM6Ly9naXRodWIuY29tL01pY3Jvc29mdEVkZ2UvV2ViVmlldzJTYW1wbGVz&ntb=1))
I am using the CPPRESTSDK (awesome sdk BTW) in my project and including it using CPM module and having issues building it on the GitHub MacOS runner: brew install uses...
Hello developers. After building cpprestsdk-2.10.19 arm on windows, I want to use the resources (websockets, http, pplx) below. However, there are usage restrictions in arm as follows. \\THIRD-PARTY_R7\cpprestsdk-2.10.19\Release\src\http\common\http_compression.cpp(20):#if !defined(CPPREST_EXCLUDE_WEBSOCKETS) &&...
When trying to build this for Ubuntu 24.04, I ran into issues with the * operator in safeint, where the multiplication result would always be 0. I found it works...
Cpprest does some questionable macro definitions here. [microsoft/cpprestsdk@411a109/Release/include/cpprest/details/basic_types.h#L87](https://github.com/microsoft/cpprestsdk/blob/411a109150b270f23c8c97fa4ec9a0a4a98cdecf/Release/include/cpprest/details/basic_types.h#L87) The `U` Macro overrides the `U` typename in fmt causing fmt not to work. This definition is like a time-bomb waiting to...
Nothing seems to define `HAVE_XLOCALE_H`, at least on macOS, but including that header may be required for the build to work.
I am setting ssl context in cpp code which uses cpprestsdk lib to host endpoint server, using boost and openssl also ``` config.set_ssl_context_callback([](boost::asio::ssl::context& ctx) { ctx.set_options(boost::asio::ssl::context::default_workarounds | boost::asio::ssl::context::no_sslv2 | boost::asio::ssl::context::no_sslv3...
I want to use http_client to send [WNS notifications](https://docs.microsoft.com/en-us/windows/uwp/design/shell/tiles-and-notifications/raw-notification-overview) from an IoT device, but for now I'm developing the code on a windows 10 machine so I can properly debug...