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

Please double check before merge. Prior to this, it resulted in following error while trying to build with the Emscripten toolchain. ``` [ 1%] Building CXX object Release/src/CMakeFiles/cpprest.dir/http/client/http_client.cpp.o In file...

`#define dllimport` inside [cpprest_compat.h](https://github.com/microsoft/cpprestsdk/blob/80444805898842f7e5c62b256337c0897eb254bb/Release/include/cpprest/details/cpprest_compat.h) breaks [curl.h](https://github.com/curl/curl/blob/bfbde883af33397943df68a3ae01847a634d33bf/include/curl/curl.h#L120) on Clang 14. See minimized example here: [godbolt](https://godbolt.org/z/T6nxGY4cz) The issue was initially [reported to LLVM](https://github.com/llvm/llvm-project/issues/53269). The LLVM issue was closed. For the reason, see...

I'm noticing a weird issue on Ubuntu 22.04 where the wildcard '+' doesn't seem to work as intended when instantiating a server. It serves localhost, but no other addresses that...

In the README is possible to read, at the beginning: ``` cpprestsdk is in maintenance mode and we do not recommend its use in new projects. We will continue to...

I am trying to use IPv6 address with http listener but giving below error. Starting listener at url.http://[fe80::a3fe:944b:534f:7ec%enp24s0f1]:8585 terminate called after throwing an instance of 'web::uri_exception' what(): Invalid hexadecimal digit...

Followed the instructions, i just get errors. Visual studio 2019. Windows 10. C:\Users\bloomscj\vcpkg>vcpkg install cpprestsdk cpprestsdk:x64-windows Computing installation plan... The following packages will be built and installed: * brotli[core]:x64-windows ->...

want to handle delete request on server side by using cpprestsdk. But the problem is the end part of url is string and can contain any value and its is...

"The practice of declaring the Bind placeholders (_1, _2, ...) in the global namespace is deprecated." No code change is necessary since those placeholders are not used, only the `boost::asio::placeholders::`...

We are running version "2.10.12.1" of CPPREST. The Windows SDK Version is 8.1 Platform Toolset is Visual Studio 2017 (v141) Our program connects and sends messages to a web site...

https://github.com/microsoft/cpprestsdk/commit/3f6f84461a74fb2d6d37b31e737711b5f83c2f66#diff-6c5e46029d14fa484c700918487121a72cd648b14dd43d728e1527df748d84e6R908 adds Win64 support. But the code in Win64 build ignores the offset parameter entirely. ```cpp #ifdef _WIN64 // Unused in this #if branch !!! LARGE_INTEGER filesize; filesize.QuadPart = 0;...