New Post: v2.3: Dependency on Boost 1.56
Ugh, disregard. I see the file in the same path as you state. I don't know why Visual Studio 2013 reported the #include as missing. It compiles fine now.
View ArticleNew Post: v2.3: CppRestSDKVersionFileSuffix is 2.2
Yes, I see that v2.3 has a "Dev status" of "Planning" and not "Stable". Also under "OTHER DOWNLOADS", v2.3 is under the "Planned" tab and not "Release". Sorry for not paying closer attention.
View ArticleUpdated Release: C++ Rest SDK 2.3.0
http_clientImplemented server certificate verification on Android. #242Added usage of Boost ssl::context::default_workarounds for compatibility with somewhat broken servers.Fixed issue with server...
View ArticleNew Post: Segmentation fault on compile without makefile
I suspect it is because you've omitted several critical macros in your compilation of bingrequest.cpp. For the full list of compile flags, pass in VERBOSE=1 when you execute make on the Release build...
View ArticleNew Post: POST an image file to REST API (SkyBiometry)
Hello, I wanted to POST an image to the SkyBiometry API. They support POST. but they said the following"Note: in case where you want to POST images instead of specifying urls, request to the method...
View ArticleNew Post: How to set http_requset body in an HTTP POST with content type...
I'm a bit confused about how to read a file and add it to the body. Can you please tell how do you read a picture file and send it in the multipart request ???
View ArticleCommented Issue: streams - a few places we block waiting on asynchronous...
In our streams library we sometimes end up calling a wait() which can block/burn a thread. This goes against our principles. Here is one such example in streams.h around line...
View ArticleClosed Issue: streams - a few places we block waiting on asynchronous...
In our streams library we sometimes end up calling a wait() which can block/burn a thread. This goes against our principles. Here is one such example in streams.h around line...
View ArticleUpdated Release: C++ Rest SDK 2.3.0
http_clientImplemented server certificate verification on Android. #242Added usage of Boost ssl::context::default_workarounds for compatibility with somewhat broken servers.Fixed issue with server...
View ArticleNew Post: How to set http_requset body in an HTTP POST with content type...
Hi mohamedselim, The C++ Rest SDK can take the body of a HTTP message as a variety of different types and formats, for example a stream as is done in this discussion thread or a string. We don't have...
View ArticleNew Post: Can't get methods::GET or any of the "macro processed includes" in...
I'm trying to use Casablanca for simple rest queries in a Windows Phone 8.1 application. I've cloned the repo and built the cpprest120_wp81_2_2.lib and cpprest120_wp81_2_2.dll which I've then included...
View ArticleCommented Feature: websockets - Visual Studio visualizer [120]
Add a visualizer like we have for the http_clientComments: Added in the development branch, will be in release 2.3.0.
View ArticleClosed Feature: websockets - Visual Studio visualizer [120]
Add a visualizer like we have for the http_client
View ArticleUpdated Release: C++ Rest SDK 2.3.0
http_clientImplemented server certificate verification on Android. #242Added usage of Boost ssl::context::default_workarounds for compatibility with somewhat broken servers.Fixed issue with server...
View ArticleNew Post: Can't get methods::GET or any of the "macro processed includes" in...
Hi Johan, Could you be more specific about ... I constantly break on any of the lines trying to resolve any of the methods::<ANYTHING HERE> or headers::<ANYTHING HERE>. Also, as a...
View ArticleNew Post: Can't get methods::GET or any of the "macro processed includes" in...
Hi Roschuma! I appreciate you taking time in helping me with this! I've tried the proposed solution above with no success. I've also reproduced this behaviour by creating a simple blank solution for...
View ArticleNew Post: Can't get methods::GET or any of the "macro processed includes" in...
I'm sorry, I managed to get it to work now, by also setting the preprocessor: HAS_CPPRESTSDK It now works just fine, and it's once again, my bad!!! :) Thanks for your help! Johan
View ArticleNew Post: Updating to Boost 1.56 on Win and Linux builds
Hi, We're switching over to Boost 1.56 in our main software branch, and we'd like to compile/link Casablanca 2.2 with our 1.56 version of Boost, on Win7/8.1 and Ubuntu 14.10. We started on Linux first,...
View ArticleNew Post: Updating to Boost 1.56 on Win and Linux builds
Hi Damien, Hypothetically, there should be no problem with just specifying -DBOOST_ROOT=/x/y/z -- You shouldn't need -DBoost_NO_BOOST_CMAKE=TRUE. I assume that during the cmake configure call it says...
View Article