New Post: Creating a json::value from a json string
Here is my code snippet: std:string MY_JSON = "{ "username": "xyz", "password": "abc" }"; json::value x; x.parse(utility::conversions::to_string_t(MY_JSON)); for (auto iter = x.cbegin(); iter !=...
View ArticleClosed Issue: Linux: "chunked" detection logic doesn't work in all cases [2]
in read_headers (http_client.cpp):ctx->m_needChunked = boost::iequals(value, U("chunked"));Above statement will not always work because some site somehow inserts an additional space before the...
View ArticleNew Post: Creating a json::value from a json string
Here's the corrected version: std::string MY_JSON = "{ \"username\": \"xyz\", \"password\": \"abc\" }"; json::value x = json::value::parse(utility::conversions::to_string_t(MY_JSON)); for (auto iter =...
View ArticleCommented Issue: Assertion thrown when uploading a file via PUT: (released ==...
The 3 assertions that get thrown in debug mode when trying to upload a file are lines 967, 961, and 913 in http_client.cpp souce file via PUT. All the assertions report "released == false". However,...
View ArticleCommented Issue: Assertion thrown when uploading a file via PUT: (released ==...
The 3 assertions that get thrown in debug mode when trying to upload a file are lines 967, 961, and 913 in http_client.cpp souce file via PUT. All the assertions report "released == false". However,...
View ArticleNew Post: Where are the server-side features?
Hi techabc, At this time we don't have any more information about the actors portions. Right now our focus is on expanding our client support and starting to bring back some of the features that we...
View ArticleCreated Unassigned: rawptr_buffer::can_read() inconsistent with other buffers...
As per discussion:http://casablanca.codeplex.com/discussions/439481When the current position on a rawptr_buffer is at EOF, can_read() returns false. Is this the intended behaviour? Why is it different...
View ArticleNew Post: Where are the server-side features?
Those of you who have strong opinions on what we should bring back into the SDK from the DevLabs release, I encourage you to fill out the survey at:http://www.instant.ly/s/WcE1w Niklas
View ArticleNew Comment on "Setup and Build on Linux"
In Step#7 If you are using ubunut 13.04, you should do sudo apt-get install libboost1.49-all-dev (instead of libboost1.48-all-dev)
View ArticleEdited Feature: Additional platform support: iOS [26]
Please vote if this is an important scenario for you. If the lack of this feature is is blocking your adoption of the C++ REST SDK, please comment below.Note: We cannot guarantee that this feature will...
View ArticleCreated Feature: OAuth 2.0 Support [28]
Please vote if this is an important scenario for you. If the lack of this feature is is blocking your adoption of the C++ REST SDK, please comment below.Note: We cannot guarantee that this feature will...
View ArticleCreated Feature: Support for Apache hosting [29]
Please vote if this is an important scenario for you. If the lack of this feature is is blocking your adoption of the C++ REST SDK, please comment below.Note: We cannot guarantee that this feature will...
View ArticleCreated Feature: Support for IIS hosting [30]
Please vote if this is an important scenario for you. If the lack of this feature is is blocking your adoption of the C++ REST SDK, please comment below.Note: We cannot guarantee that this feature will...
View ArticleCreated Feature: TCP Support (Client\Listener) [31]
Please vote if this is an important scenario for you. If the lack of this feature is is blocking your adoption of the C++ REST SDK, please comment below.Note: We cannot guarantee that this feature will...
View ArticleCreated Feature: UDP Support (Client\Listener) [32]
Please vote if this is an important scenario for you. If the lack of this feature is is blocking your adoption of the C++ REST SDK, please comment below.Note: We cannot guarantee that this feature will...
View ArticleCreated Feature: Web Socket Support [33]
Please vote if this is an important scenario for you. If the lack of this feature is is blocking your adoption of the C++ REST SDK, please comment below.Note: We cannot guarantee that this feature will...
View ArticleCreated Feature: Additional platform support: Xbox [34]
Please vote if this is an important scenario for you. If the lack of this feature is is blocking your adoption of the C++ REST SDK, please comment below.Note: We cannot guarantee that this feature will...
View ArticleCreated Feature: Additional platform support: MacOS [35]
Please vote if this is an important scenario for you. If the lack of this feature is is blocking your adoption of the C++ REST SDK, please comment below.Note: We cannot guarantee that this feature will...
View ArticleCreated Feature: Odata support [36]
Please vote if this is an important scenario for you. If the lack of this feature is is blocking your adoption of the C++ REST SDK, please comment below.Note: We cannot guarantee that this feature will...
View Article