New Post: building against non-system gcc
Glad to hear you got everything figured out. And thanks for sharing here to help out others. Steve
View ArticleNew Post: building against non-system gcc
no problem! - just glad I can now use your api on our dinosaur of a codebase :)
View ArticleCommented Unassigned: http_client.request hangs forever [364]
I have a program runs on linux which used http_client and call request(...).wait() to send a request to remote machines.However, I randomly see this call hangs forever, and since this thread holds a...
View ArticleCreated Unassigned: Make thread pool can grow/shrink [366]
This will make the library more robust in business usage.Thread pool thread could be blocked (though it is bad design, but still inevitable). In case of blocked thread accumulate for some reason, the...
View ArticleCreated Unassigned: A crash in asio_connection_pool::handle_pool_timer [367]
Hi,My program using the SDK on Linux crashed as following:```Program received signal SIGSEGV, Segmentation fault.[Switching to Thread 0x7fffd17e2700 (LWP 32411)]0x00007ffff7b247a2 in...
View ArticleNew Post: no v140_xp nuget package
Hi, when we use Visual Studio 2015, and choost v140_xp platform,there is no cpprestsdk.v140.winxp.msvcstl.dyn.rt-dyn package, so we have to use v120_xp. Could you please add the v140_xp nuget package ?...
View ArticleNew Post: Getting rid of BOOST requirement
There's non-Boost version of ASIO:http://think-async.com/Asio/AsioAndBoostAsio Although Boost was indispensable in pre-C++11 days, it is no longer. Switching to non-Boost ASIO will make building...
View ArticleCreated Unassigned: container_buffer does not track its size properly [368]
If a container_buffer needs to extend the buffer to do an alloc() for write, but less than that is committed, buffer.size() and buffer.container.size() will include the empty space at the end.```auto...
View ArticleNew Post: a simple blog server application in c++, using a Json rest server
Hi, i have to make this for one of the clients, but since i never have done this type of application before, i had to make this post. Here are some specifications:"Casablanca” JSON C++ library, you...
View ArticleNew Post: Single-character preprocessor macro in...
On Linux, this simple test program fails to compile:#include <cpprest/asyncrt_utils.h> #include <boost/iostreams/copy.hpp> After a great deal of header-file searching, I determined the...
View ArticleNew Post: Debugging Examples exited with code -1
Hi I am trying to figure out how to grab pictures from an individuals profile for use in a desktop game. I am compiling the examples but on all the examples it exits with code -1. I am using windows 7...
View ArticleCreated Unassigned: U(x) macro #define in cpprest/details/basic_types.h...
At the end of cpprest/details/basic_types.h is this code:```#ifndef _TURN_OFF_PLATFORM_STRING#define U(x) _XPLATSTR(x)#endif // !_TURN_OFF_PLATFORM_STRING```That U(x) preprocessor macro breaks any...
View ArticleNew Post: using data from an api call (Using Oauth1)
Hi I have called the twitter API Which returns the profile picture address along with loads of data that I don't need. How do I put just the profile picture into a variable so I can do a separate call...
View ArticleCreated Unassigned: How to download? [370]
I am trying super hard to get this thing to download using Visual Studio 2013 NuGet, but nothing comes up in the search when I do: Tools > Extensions & Updates, then type "C++ Rest" or...
View ArticleUpdated Wiki: FAQ
Frequently Asked QuestionsWhat is C++ Rest SDK and why should I care about it? C++ Rest SDK is your toolbox for accessing connected applications using modern C++ features and best practices....
View ArticleClosed Unassigned: How to download? [370]
I am trying super hard to get this thing to download using Visual Studio 2013 NuGet, but nothing comes up in the search when I do: Tools > Extensions & Updates, then type "C++ Rest" or...
View ArticleCommented Unassigned: U(x) macro #define in cpprest/details/basic_types.h...
At the end of cpprest/details/basic_types.h is this code:```#ifndef _TURN_OFF_PLATFORM_STRING#define U(x) _XPLATSTR(x)#endif // !_TURN_OFF_PLATFORM_STRING```That U(x) preprocessor macro breaks any...
View ArticleNew Post: using data from an api call (Using Oauth1)
Hi Mark, I'm super familiar with the Twitter API. It sounds like the HTTP response returns a bunch of data. What is the format? If it is a JSON object then you probably just need to construct a...
View ArticleNew Post: no v140_xp nuget package
Hi icexile, Yes you are correct we are not supporting Windows XP with the v140 toolset. Visual Studio 2013 is the last version we will be supporting XP with the C++ REST SDK. If you really need to you...
View ArticleCommented Unassigned: CMake project generation broken on Windows [371]
Hi, I'm using CMake for a while to generate projects on various platforms, that use cpprest SDK.I'm tracking development branch. Since a few commits, cmake generation on windows still uses files that...
View Article