New Post: Certificate store for https
My understanding is that if we want to support https on the client side, we really just need to set the URI to be https. [discussion:639047] Is it safe to assume that this is using the OS cert store...
View ArticleNew Post: Certificate store for https
Hi jatzinger, Yes you are correct to use HTTPS all you need to do is specify it as the scheme in the URI. Yes we use the OS certificate store for each of the platforms appropriately. Our implementation...
View ArticleNew Post: .then() / .wait() on task tree?
Hi DesktopMan, Without seeing your code it is a little difficult to describe, but you always can choose to return the last task in your processing chain. I.e. the task that executes after calling...
View ArticleNew Post: Certificate store for https
Thanks Steve. Initially, we're targeting Vista+ (desktop) and Linux. Mac and Mobile may follow someday, but they are not the priority right now. We really just want to be able to specify a cert chain...
View ArticleUpdated Release: C++ REST SDK 2.7.0
websocketsMerged pull request allowing through CMake to use an external version of Websocket++. #294Fixed potential AV with the Windows Runtime websocket client, if the task returned from the close...
View ArticleNew Post: Certificate store for https
Hi jatzinger, Yes we only have high level authentication support with the http_client on Windows right now. You will have to use the set_nativehandle_options or do some other form of authentication...
View ArticleClosed Unassigned: Build fails on OS X 10.8.5 due to -Wnull-conversion [327]
Hi,There is a problem while compiling CPPRest 2.3 on Mac OS X 10.8.5 with a conversion from NULL to nullptr_t:```...cpprest/astreambuf.h:524:42: error: implicit conversion of NULL constant to...
View ArticleNew Post: How to create web service using C++ REST SDK
Hi, I have already C++ code written in DLL and lib. I need to expose my internal C++ API as Restful API. How I can package it. either as DLL or EXE in Widows platform I need to provide as SDK to...
View ArticleNew Post: How to create web service using C++ REST SDK
Hi, I have already C++ code written in DLL and lib. I need to expose my internal C++ API as Restful API. How I can package it. either as DLL or EXE in Widows platform I need to provide as SDK to...
View ArticleNew Post: http_client, WinHttp, SSL, ClientCert Auth and persistent connections
We use the set details in the subject when making a request per minute to a given endpoint. We return a header from our server and log it which contains the handling server name. The server handling...
View ArticleNew Post: Validating a digitally signed JSon Web Token with a public key
Hi stunney, Yes an improvement could be made to allow the decoding to tolerate input that didn't include '=' padding. We accept contributions to the library, if you wanted to make the improvement all...
View ArticleNew Post: How to create web service using C++ REST SDK
Hi snahmad75, You have a lot of questions comments here and I'm having trouble understanding exactly what you are looking for. Are currently using the C++ REST SDK or hitting any issues? This library...
View ArticleNew Post: Debug Asserting failed when using Rest SDK
Assertion: Program: ...Source\temp6\UpWin\bin\x64\Debug\AppX\cpprest120d_app_2_6.dll File:...
View ArticleCreated Unassigned: Fix unittest compilation [394]
UnitTestpp depends on pthread_* symbols but does not link to it. Attached patch tested on openSUSE fixes the issue.
View ArticleNew Post: http_client, WinHttp, SSL, ClientCert Auth and persistent connections
Just for completeness I'm responded here as well. gwishnie emailed our alias as well. Now that he has upgraded to 2.6.0 he is seeing much better performance with respect to reusing connections. For...
View ArticleNew Post: Debug Asserting failed when using Rest SDK
Hi sggeng, This is interesting I've never seen this assert fire before, do you have a repro you can share so I can take a deeper look at how this is being encountered? If you don't want to share with...
View ArticleUpdated Release: C++ REST SDK 2.7.0
websocketsMerged pull request allowing through CMake to use an external version of Websocket++. #294Fixed potential AV with the Windows Runtime websocket client, if the task returned from the close...
View ArticleReviewed: C++ REST SDK 2.0.1 (jun 24, 2015)
Rated 5 Stars (out of 5) - adasdasdasdasdas
View ArticleNew Post: Consumer / producer upload
I can't find a better way to write that title, but I figure it's probably going to be pretty ambiguous, so let me explain this one. Basically, I want to experiment with implementing a producer/consumer...
View ArticleNew Post: Consumer / producer upload
Take a look at http://casablanca.codeplex.com/wikipage?title=Asynchronous%20Streams, specifically "Producer Consumer". Here's the reference doc:...
View Article