Commented Issue: json - why is parsing depth different on OSX/iOS? [271]
```#ifndef __APPLE__ static const size_t maxParsingDepth = 128;#else static const size_t maxParsingDepth = 32;#endif```Comments: Those were the limits that allowed the initial parser to avoid stack...
View ArticleNew Post: New to Casablanck SDKs
roschuma wrote: Ok, first I'm assuming you're using the latest version (2.2). Then, the top of my main file looks like#include "stdafx.h" #include <iostream> #include "cpprest/astreambuf.h"...
View ArticleNew Post: New to Casablanck SDKs
What I have noticed is , its the inclusion of these header files that is causing this error. //#include "cpprest/astreambuf.h" //#include "cpprest/http_listener.h" Shall I upload the code in GitHub or...
View ArticleNew Post: CppCon 2014 Talk on using C++ to Connect to Services
Let me know if you are at CppCon this week and would like to meet for a chat. Steve
View ArticleNew Post: CppCon 2014 Talk on using C++ to Connect to Services
I'll let you know, but I currently don't have a means to get in.
View ArticleUpdated Wiki: Home
Welcome! The C++ REST SDK (codename "Casablanca") is a Microsoft project for cloud-based client-server communication in native code using a modern asynchronous C++ API design. This project aims to help...
View ArticleUpdated Wiki: Home
Welcome! The C++ REST SDK (codename "Casablanca") is a Microsoft project for cloud-based client-server communication in native code using a modern asynchronous C++ API design. This project aims to help...
View ArticleNew Post: New to Casablanck SDKs
I noticed in your stdafx.h file, you have the line#include <http_listener.h>https://github.com/maverick786us/Server/blob/master/Server/Server/stdafx.h#L12 This will include outdated files which...
View ArticleCommented Issue: v2.2 NuGet package's v120_xp toolset support broken [262]
I'm using VS2013 under 64-bit Windows 7. I installed the current v2.2 CPPREST NuGet package into a new project that uses the v120_xp platform toolset, and the debug .EXE file built from the project...
View ArticleNew Post: New to Casablanck SDKs
OK I removed#include <http_listener.h> But by doing that it is simply unable to identify http_listener class, despite the fact that it is available in cpprest/http_listener.h header file which...
View ArticleCommented Issue: v2.2 NuGet package's v120_xp toolset support broken [262]
I'm using VS2013 under 64-bit Windows 7. I installed the current v2.2 CPPREST NuGet package into a new project that uses the v120_xp platform toolset, and the debug .EXE file built from the project...
View ArticleNew Post: Is Casablanca supported on windows server 2008?
Thanks Steve! That was the issue. I thought when calling this:.then([=](http_response response) I have the whole response available. I could not imagine how can I receive just a piece of the response...
View ArticleNew Post: I do not see the necessary libraries
When installing the REST SDK through nuget I did not not find the following libraries for Windows: Debug / Release version of the DLL with static linking to CRT. Debug / Release static libraries, which...
View ArticleNew Post: New to Casablanck SDKs
I've spent some time attempting to update the project you've posted to use the new APIs, however I think it will be simply easier if you remake it from scratch. Do not follow the tutorial you've...
View ArticleNew Post: I do not see the necessary libraries
Hi sunheretic13, We currently don't officially support static linking in either of the ways you've mentioned, however some users have been successful building static forms of the libraries which link...
View ArticleClosed Issue: listener.close().wait() hangs on Linux [192]
The following program is faulting on Linux (Ubuntu 14 and RHEL 7) on listener.close. It faults if one or more requests are processed, not on zero requests. It actually serves up pages just fine, it...
View ArticleUpdated Wiki: Home
Welcome! The C++ REST SDK (codename "Casablanca") is a Microsoft project for cloud-based client-server communication in native code using a modern asynchronous C++ API design. This project aims to help...
View ArticleNew Post: New to Casablanck SDKs
roschuma wrote: I've spent some time attempting to update the project you've posted to use the new APIs, however I think it will be simply easier if you remake it from scratch. Do not follow the...
View ArticleNew Post: How to open http_listener (error -> Address...
Hello i always getting error that address is in use when using this code void ListenerOpen() { try { web::http::experimental::listener::http_listener listener(L"http://www.google.com/");...
View ArticleNew Post: how to https Certification
I need a connection to a server with https and have two ".pem files". One for the certificate and one for the key. How can i include these files into my program? Without certification my code works...
View Article