New Post: Can i use chunk size when i write to http stream ?
Hi kisuya, We have a feature in the library for reporting progress of an HTTP request and response. Take a look at the method http_request::set_progress_handler. It allows you to specify a callback to...
View ArticleNew Post: Bug in datetime::timeval_to_datetime()
Hi Jason, Yes you are correct about this code it incorrectly is preforming the conversion in this private function. There are two uses of this helper function in our code base. First is with the...
View ArticleNew Post: Bug in datetime::timeval_to_datetime()
I built a class just like this not long ago; I suspect your "sneaky thing" is the same one I did in my operator<<() method (left-pad tv_usec with 0's to six characters wide, then emit a hardcoded...
View ArticleNew Post: What TLS versions Casablanca support
Casablanca uses WinHTTP. According tohttp://msdn.microsoft.com/en-us/library/windows/desktop/aa382925(v=vs.85).aspx - WinHTTP 5.1 Features:“Secure Sockets Layer (SSL) functionality, including client...
View ArticleNew Post: Android Testing
I am running tests with googletest which creates an executable that runs on the device. However, casablanca requires a reference to the VM in order to proceed (pplx/threadpool.cpp:36). A VM is not...
View ArticleCommented Unassigned: 2.3.0 : https connection leak under Linux [326]
Tried to upgrade from 2.2 to 2.3 with Linux 64 bits, however it appears that linux connection pool is not destroyed. I recompiled boost 1.57 and cpprest 2.3.0 with gcc 4.9 (I had to remove "-Werror" in...
View ArticleEdited Issue: 2.3.0 : https connection leak under Linux [326]
Tried to upgrade from 2.2 to 2.3 with Linux 64 bits, however it appears that linux connection pool is not destroyed. I recompiled boost 1.57 and cpprest 2.3.0 with gcc 4.9 (I had to remove "-Werror" in...
View ArticleCommented Feature: Windows desktop - statically link with OpenSSL [308]
This will avoid customers haven't to deal with another dll, while deploying their applications.[Related discussion](https://casablanca.codeplex.com/discussions/571042#post1318745).Comments: This has...
View ArticleNew Post: OpenSSL in Windows?
Hi G, I've changed everything to statically link to OpenSSL on Windows now in the development. This longer will be an issue in the 2.4.0 release. Openssl will no longer be a runtime package dependency....
View ArticleUpdated Release: C++ Rest SDK 2.4.0
oauthFixed memory leak with OAuth 1 in the success case. #321OAuth1 added support for parameters in POST request body if Content-Type is application/x-www-form-urlencoded.OAuth1 fixed some parameters...
View ArticleClosed Feature: Windows desktop - statically link with OpenSSL [308]
This will avoid customers haven't to deal with another dll, while deploying their applications.[Related discussion](https://casablanca.codeplex.com/discussions/571042#post1318745).
View ArticleCommented Feature: No iOS test application [105]
We do not distribute a test app/project for iOS that allows users to run the iOS tests locally.Comments: One has been added in the development branch, and will be in the 2.4.0 release.
View ArticleUpdated Release: C++ Rest SDK 2.4.0
oauthFixed memory leak with OAuth 1 in the success case. #321OAuth1 added support for parameters in POST request body if Content-Type is application/x-www-form-urlencoded.OAuth1 fixed some parameters...
View ArticleClosed Feature: No iOS test application [105]
We do not distribute a test app/project for iOS that allows users to run the iOS tests locally.
View ArticleEdited Issue: [android] Unittestpp has dependancy upon cpprest [324]
When compiling for android, we use the symbol [TestRunner.cpp:51]```namespace crossplat {extern std::atomic<JavaVM*> JVM;}```to access the JVM from inside the unit test framework. This symbol is...
View ArticleNew Post: Does PPLX support task_group or structured_task_group?
I find several references to task_group and structured_task_group in the PPLX documentation (e.g. the doc for PPLX::cancellation_token), but I can't find any mention of, or support for, the task_group...
View ArticleNew Post: Does PPLX support task_group or structured_task_group?
Hi jdzions, No there aren't really any of the other features from PPL in PPLX, like task groups. PPLX only really contains the pieces that were necessary for the C++ Rest SDK, which are tasks, some...
View ArticleCommented Issue: 2.3.0 : https connection leak under Linux [326]
Tried to upgrade from 2.2 to 2.3 with Linux 64 bits, however it appears that linux connection pool is not destroyed. I recompiled boost 1.57 and cpprest 2.3.0 with gcc 4.9 (I had to remove "-Werror" in...
View ArticleNew Post: OpenSSL in Windows?
Hi Steve, Great! I just run a compilation and all seems OK. Thanks, G.
View ArticleNew Post: How to make regularly-scheduled work cancelable
I know how to do the basics: I can setup a Task<void> to be executed after an arbitrary delay; I can setup a continuation of that task to do my scheduled work; I can setup a continuation of that...
View Article