Updated Release: C++ Rest SDK 2.5.0
AndroidFixed issue in CMakeLists.txt where parenthesis were incorrectly used instead of brackets.Fixed issue in CMakeLists.txt where pplxlinux.cpp source file was missing.Added Android TestRunner...
View ArticleCommented Unassigned: exception in...
I get the following exception if trying to pass invalid characters as arguments. E.g.:http://localhost:9576/lucyhttptest?{ .With exception:STACK_TEXT:...
View ArticleNew Post: Creating a static library for Casablanca C++ rest SDK 2.3
Are you linking the C++ REST SDK against your other C++ application? Try adding the NuGet package to that application as well.
View ArticleUpdated Release: C++ Rest SDK 2.5.0
AndroidFixed issue in CMakeLists.txt where parenthesis were incorrectly used instead of brackets.Fixed issue in CMakeLists.txt where pplxlinux.cpp source file was missing.Added Android TestRunner...
View ArticleNew Post: Converting strings to string_t
I'm kind of dense when it comes to documentation. I've tried the below approaches: builder.append_query(U("s"), localseed.to_string_t()); and wstring qs = utility::to_string_t(localseed);...
View ArticleNew Post: Converting strings to string_t
Durrrr. I need to not look at code when I'm so tired. Typos abound. Fixed it! Thanks for the help, Steve!
View ArticleNew Post: localhost does not work but 127.0.0.1 does
Hi, I am trying to combine C++ REST with registering the URL in my application. I think I am tantalisingly close but cannot get to grips with HttpSetServiceConfiguration and its associated code. I have...
View ArticleNew Post: Creating a static library for Casablanca C++ rest SDK 2.3
I understand that adding NuGet package to the application will help my cause but I cannot expect every C++ application to install C++ rest SDK through NuGet package.Is there any alternative way to link...
View ArticleNew Post: localhost does not work but 127.0.0.1 does
Hi andy5739, I'm not sure if this is your problem but quickly looking at the code I don't think you are initializing the HTTP_SERVICE_CONFIG_IP_LISTEN_PARAM correctly. You are trying to cast a pointer...
View ArticleNew Post: localhost does not work but 127.0.0.1 does
Hi andy5739, I'm not sure if this is your problem but quickly looking at the code I don't think you are initializing the HTTP_SERVICE_CONFIG_IP_LISTEN_PARAM correctly. You are trying to cast a pointer...
View ArticleNew Post: Creating a static library for Casablanca C++ rest SDK 2.3
Ok, so I think I'm not understanding what your use case is here. If you're making a library, (such as a DLL or a static lib), other programs which use your library will need to install the C++ REST SDK...
View ArticleNew Post: Creating a static library for Casablanca C++ rest SDK 2.3
Ok I also installed C++ rest SDK to my application through NuGet package to use my library(A static library which is built using C++ rest SDK).But still getting those four linker errors. I have just...
View ArticleNew Post: Problem with Casablanca SDK
I have developed a VC++ listener application using Casablanca SDK. This is the source code.int _tmain(int argc, _TCHAR* argv[]) { __uri_builder uri(L"http://localhost:2001/");__ http_listener...
View ArticleNew Post: Problem with Casablanca SDK
I have developed a VC++ listener application using Casablanca SDK. This is the source code.int _tmain(int argc, _TCHAR* argv[]) { __uri_builder uri(L"http://localhost:2001/");__ http_listener...
View ArticleNew Post: Problem with Casablanca SDK
I have developed a VC++ listener application using Casablanca SDK. This is the source code.int _tmain(int argc, _TCHAR* argv[]) { __uri_builder uri(L"http://localhost:2001/");__ http_listener...
View ArticleNew Post: Converting strings to string_t
Steve it would be really really really nice to use utf8 for all platforms. it is a bit of a mess to ensure convert everything that goes in and out of the sdk to utf-16 on...
View ArticleNew Post: Problem with Casablanca SDK
Hi maverick786us, What do you mean by crashes, is an exception throw? If so what is the message of the exception? Can you share the exact string you are using to construct the uri_builder? Here is a...
View ArticleCommented Feature: Windows - support for utf-8, single byte strings [239]
On Windows string_t is a 2 byte character, assumed UTF-16 string in the C++ Rest SDK. For some data critical areas we could make API overloads that work with std::string or return std::string.This has...
View ArticleUpdated Release: C++ Rest SDK 2.5.0
AndroidFixed issue in CMakeLists.txt where parenthesis were incorrectly used instead of brackets.Fixed issue in CMakeLists.txt where pplxlinux.cpp source file was missing.Added Android TestRunner...
View ArticleNew Post: Converting strings to string_t
Hi eske, We felt it was important to have UTF-16 available as an easy option on Windows, however I do see the merits in having UTF-8 working regardless of the platform. This is tracked in the following...
View Article