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...
Years ago(!) there already was a discussion on Casablanca supporting client certificates for mutual SSL connections. See here: [client side certificates](https://social.msdn.microsoft.com/Forums/en-US/35d27e7f-c560-471a-bdfb-8a072b38e07f/using-casablanca-as-the-communication-platform-for-a-clientserver-scada-system?forum=casablanca) Unfortunately this seems not to have changed meanwhile, Apparently...
Cmakefile.txt ```cmake find_package(cpprestsdk) target_link_libraries(module PRIVATE cpprestsdk::cpprest) ``` When compiling, the dll size increases by 3MB+ size, am I missing a specific option?
I am trying to upload files to restsdk http server in multipart payload. When I check received buffer I see modified payload. Sending using cpr library ``` cpr::File config1{"test.exe"}; cpr::File...
Fixed to build in GCC 12.x and it is working in my environment.
Not sure about this one… Summary: if I update websocketpp to `develop` to get cpprestsdk working with Boost 1.72, the CMake-based build doesn't handle the resulting dependency on libcrypto. I...
I was using python3.11 and pyodbc 4.0.34 to make a connection to my datasource. The implementation of this interface was simply a http client creation using cpprestsdk, and my code...
In MacOS BigSurr while compiling the repo we are not able to find OpenSSL (required version >= 1.0.0) On investigation, it was happening because of two cmake variables not being...
`offset` was not applied when we seek from end.
* Do not leak `clocale` on `_create_locale` failed. * Add missed class member initializers to prevent UB on access to them. * Do not perform `string` -> `char*` -> `string`...
My server is returning the following as shown in PostMan:  ``` { "status": "FEL: Det valda objektet för händelsen" } ``` In C++ VS2019, reading as a `wstring` is...