New Post: How Can I get older version?
I found this is because the Apache Kylin ODBC Driver need link statically with cpprest. I follow the instructions in...
View ArticleNew Post: Problem while reinstalling VS2012
I developed an application using Casablanca SDK. It was working fine. Today something happened to my visual studio and I had to reinstall it, After reinstalling, I rain casablanca MSI installer, where...
View ArticleNew Post: Does cpprest support C++03 compiler?
Hello, I wish to use cpprest in my project, this is a amazing library, but I need to make my can ship with some older Linux machine which does not have gcc 4.8 (for example CentOS 5, only have gcc...
View ArticleNew Post: Listener silently fails to open on Ubuntu Linux 14.04
I'm trying to create a restful listener. I compiled everything from source with cmake and gcc 4.8.2. I've tried launching the blackjack server demo, it launches correctly but if I nmap localhost, I...
View ArticleNew Post: Does cpprest support C++03 compiler?
Hi bear330, We require many C++11 features for compilation so I doubt you will be able to compile with 4.1. However you could compile the library and copy it over, as well as all the runtime...
View ArticleNew Post: Problem while reinstalling VS2012
Hi maverick786us, I recommend you ignore the version of the C++ REST SDK which comes with Visual Studio 2013. It is quite old now and the library now exclusively is delivered on CodePlex and through...
View ArticleClosed Unassigned: Unit test failure. [377]
The following unit test failed on my Linux. Did I mis-configure something?**** building_request_tests:set_content_length_locale FAILED ******** building_request_tests:set_port_locale FAILED ********...
View ArticleNew Post: Image into a container
Hi I have implemented twitter into my game. I need to get images from twitter and at the moment I am downloading them. I was wondering if there is a way to put them into a container rather than...
View ArticleNew Post: Image into a container
Hi Mark,What do you exactly mean by ‘put them into a container’?Steve
View ArticleNew Post: Image into a container
Like into a vector container to be able to call them in my game.
View ArticleNew Post: Problem while reinstalling VS2012
stevetgates wrote: Hi maverick786us, I recommend you ignore the version of the C++ REST SDK which comes with Visual Studio 2013. It is quite old now and the library now exclusively is delivered on...
View ArticleNew Post: Problem while reinstalling VS2012
Anyways I created a new project. Added the source code and used NuGet updated to latest version of Casablanca where it added all the header files, library and other files within the newly created...
View ArticleNew Post: Image into a container
You could use a container_stream backed by a std::vector or std::string. Then pass that to http_request::set_response_stream(...) before sending out the request. The HTTP response body will then be...
View ArticleNew Post: Problem while reinstalling VS2012
Hi maverick786us, Ok I see the problem, you are using Visual Studio 2012. Starting with the 2.5.0 release our NuGet package doesn't contain binaries for Visual Studio 2012 anymore. We are phasing out...
View ArticleNew Post: Deadlock in Windows XP
Thank you very much Steve! Should I post this problem to Microsoft Connect for fixing this problem on VS2015?
View ArticleNew Post: Potential deadlock when threw exception
I discovered potential deadlock when threw exception from function "schedule". Code below:Release\src\pplx\pplxwin.cpp: if (!work) { delete schedulerParam; throw...
View ArticleCreated Unassigned: Potential deadlock when threw exception [379]
I discovered potential deadlock when threw exception from function "schedule". Code below:```Release\src\pplx\pplxwin.cpp: if (!work){ delete schedulerParam; throw...
View ArticleNew Post: Deadlock in Windows XP
Does this cause a problem when not using CPPREST_FORCE_PPLX?Steve
View ArticleUpdated Release: C++ REST SDK 2.6.0
streamsDeprecated the streambuf::putn API. In some cases with file streams this API makes a copy. To be more efficient and not break existing code a new function putn_nocopy has been created. This...
View ArticleCommented Issue: Two http_listeners on one port (problem with solution) [375]
Hi,I found a problem when I wanted to have http server application which finds its free port.We can think about BlackJackServer from samples. When we run the second instance of BlackJackServer it...
View Article