New Post: 2.4.0 Release
Where is the download? There is no valid URL referring to the 2.4 release. Am I missing something?
View ArticleNew Post: 2.4.0 Release
Hi pmush, The source code is in the 'master' branch now in the repository on CodePlex and we provide binaries for Windows and Android in our NuGet packages. If you are new to NuGet and the C++ Rest SDK...
View ArticleNew Post: runtime errors iOS - pplxtasks.h
Hi Cory, Are you aware that calls to task::get() and task::wait() will throw an exception if the task threw an exception or was canceled? And obviously if the exception goes unhandled it will break...
View ArticleCommented Unassigned: Server https://git01.codeplex.com/casablanca doesn't...
Just tried downloading the source tree from https://git01.codeplex.com/casablanca and it doesn't work (http 400).Comments: Hi raffaeler, It sounds like you were having an issue with CodePlex hosting...
View ArticleClosed Unassigned: Server https://git01.codeplex.com/casablanca doesn't work...
Just tried downloading the source tree from https://git01.codeplex.com/casablanca and it doesn't work (http 400).
View ArticleCommented Unassigned: Server https://git01.codeplex.com/casablanca doesn't...
Just tried downloading the source tree from https://git01.codeplex.com/casablanca and it doesn't work (http 400).Comments: Thanks Steve, I still can't access the git server for casablanca and filed an...
View ArticleNew Post: Build issues on OSX 10.10 with XCode 6.1
This is due to a preset openssl version takes effects before finding the brew ones. a PR is sent for this: https://casablanca.codeplex.com/SourceControl/network/forks/slepox/casablanca/contribution/7850
View ArticleNew Post: is it possible that casablanca use in synchronous method?
is it possible ?how do i used casablanca in synchronous method?im a windows developer,i have searched google,but there is no answer yet,the samples are using in asynchronous method.in addtion,is it...
View ArticleNew Post: cmake and windows build (or better say x-platform)
hi, I created a library on Mac that uses Casablanca. And now fighting compiling this library on Windows but it seems Casablabca does not support CMake building on Windows, is this correct? In...
View ArticleNew Post: Unit Test Outside_cnn_dot_com failed.
Shall we expect 302 in this test case? As I tested, www.cnn.com does redirect http request. TEST_FIXTURE(uri_address, outside_cnn_dot_com, 50 "Ignore", "Manual") 51 { 52 http_client...
View ArticleCommented Issue: Casablanca hangs my app when unloaded [309]
Hi, Am trying to use Casablanca as a dll in another third party exe on Windows 7. Everything works fine, except when closing the socket and unloading the dll. My close function is as follows```void...
View ArticleNew Post: A question on when_all
Please consider the following codevector<task<vector<int>>> vTasks; //vector<vector<int>> res = when_all(vTasks.begin(), vTasks.end()).get(); // C2440 vector<int>...
View ArticleNew Post: Getting the prebuilt static libraries for android on windows
Hi zividevelopmment, You can use VS to make a project and download the NuGet package, then take the binaries out of the NuGet package (it's stored in a packages\ folder next to your .sln).
View ArticleNew Post: Workarounds to build for Android under Mac OS X
Thanks a bunch for compiling these instructions!
View ArticleNew Post: Linker Errors on Android
Could you try replacing the parentheses around the "SOURCES" with curly braces in the CMakeLists.txt file?
View ArticleNew Post: Move bug in task creation?
Unfortunately this is tied to the behavior inside the underlying "Parallel Patterns Library" implementation. Calling .get() on a task will return a copy of the object, making it safe to chain multiple...
View ArticleNew Post: cmake and windows build (or better say x-platform)
Hi denveloper, The easiest solution is to use NuGet + MsBuild project files on Windows (and android-via-windows), and CMake for other platforms. This is what we use inside C++REST itself. If you prefer...
View ArticleNew Post: Unit Test Outside_cnn_dot_com failed.
Hi evanc, Yes something changed on the cnn site we use for this test case. It has already been addressed in the 'development' branch and is now passing. You can safely ignore this. Steve
View ArticleNew Post: Workarounds to build for Android under Mac OS X
Yes thanks opsimath for sharing out these instructions. I'm sure others will benefit. I've changed to curly braces in that location in the development branch. Steve
View ArticleNew Post: Memory usage when processing large responses with http_client
Hi David, Yes we don't close the response stream if it was set by the user through set_response_stream because there could be scenarios where you might want to write multiple response bodies to some...
View Article