Commented Unassigned: 64-bit integers and large integer types [65]
Casablanca seems to disagree with large integers. As far as I can tell, it turns them into a Number type which I assume to be a signed 32-bit integer. Is there any plan to fix this in order to support...
View ArticleCommented Unassigned: json::value::parse limits numerics to 32 bit int [72]
json::value::parse of a numeric value is limited to a 32 bit int value. Any number of greater magnitude resolves to -2147483648. Expected behavior is to parse a number as as a double.I see this report...
View ArticleCommented Unassigned: json empty array serialized as "array":] instead...
Let's consider following test code:``` auto json_original = std::wstring(LR"({"thumbsDown":[],"thumbsUp":[]})"); auto json_value = json::value::parse(json_original); auto json_copy =...
View ArticleCommented Unassigned: json empty array serialized as "array":] instead...
Let's consider following test code:``` auto json_original = std::wstring(LR"({"thumbsDown":[],"thumbsUp":[]})"); auto json_value = json::value::parse(json_original); auto json_copy =...
View ArticleCommented Unassigned: 64-bit integers and large integer types [65]
Casablanca seems to disagree with large integers. As far as I can tell, it turns them into a Number type which I assume to be a signed 32-bit integer. Is there any plan to fix this in order to support...
View ArticleCommented Unassigned: json::value::parse limits numerics to 32 bit int [72]
json::value::parse of a numeric value is limited to a 32 bit int value. Any number of greater magnitude resolves to -2147483648. Expected behavior is to parse a number as as a double.I see this report...
View ArticleCommented Unassigned: 64-bit integers and large integer types [65]
Casablanca seems to disagree with large integers. As far as I can tell, it turns them into a Number type which I assume to be a signed 32-bit integer. Is there any plan to fix this in order to support...
View ArticleNew Post: rest sdk http_listener as a network server
How to configure http_listener to listen on my ip address so other computers on the network can send requests to the server ? http_listener listener(L"http://localhsot:9000"); // not working...
View ArticleCreated Unassigned: Aborted(Core Dumped) [74]
Hi,web::http::client::http_client client("http://10.18.26.63:8080");client.request(web::http::methods::GET, ("/wm/device/")).then([=](pplx::task<web::http::http_response> task){...}I have used...
View ArticleNew Post: http_client_config - set_timeout is not working
Hello Guys, I am working on to reduce the time taken by rest SDK for unreachable IPs. I need to set the timeout to less than 5 seconds, where it was set to 30 seconds by default. But setting to 5...
View ArticleNew Post: HTTPS support status
Hi Steve, Yes, I am trying to request a HTTPS Url as suggested by you i.e setting URI with https scheme while creating http_client. My request is JSON request but I am getting an exception, whereas I...
View ArticleNew Post: theortetical question
Hi, Since this is a cross platform library and in Linux all strings are UTF-8, why do this library use wchar_t in Windows? I mean, this library has minimal (if any?) interaction with the Windows GUI...
View ArticleEdited Unassigned: Aborted(Core Dumped) [74]
Hi,web::http::client::http_client client("http://10.18.26.63:8080");client.request(web::http::methods::GET, ("/wm/device/")).then([=](pplx::task<web::http::http_response> task){...}I have used...
View ArticleCommented Unassigned: Aborted(Core Dumped) [74]
Hi,web::http::client::http_client client("http://10.18.26.63:8080");client.request(web::http::methods::GET, ("/wm/device/")).then([=](pplx::task<web::http::http_response> task){...}I have used...
View ArticleNew Post: theortetical question
Hi G, Some of the underlying Windows APIs we work with directly use UTF-16 strings, however this isn't the only reason we made this decision. We felt it was better on Windows to always present UTF-16...
View ArticleNew Post: theortetical question
Hi Steve, In my case the issue is that I have really big structures in memory. Most of this data is composed of binary buffers so TCHAR is not an issue but, I also have a lot of tags (field names, xml...
View ArticleNew Post: http_client_config - set_timeout is not working
Hi Thameem, We can repro this issue for unreachable IPs. http_client calls WinHTTPSetTimeouts to set the different timeouts, and looks like we use the timeout from http_client_config for send and...
View ArticleCommented Unassigned: Aborted(Core Dumped) [74]
Hi,web::http::client::http_client client("http://10.18.26.63:8080");client.request(web::http::methods::GET, ("/wm/device/")).then([=](pplx::task<web::http::http_response> task){...}I have used...
View ArticleNew Post: HTTPS support status
Hi Rathi8579, Yes that is a bug in the error message "HTTP", that we have fixed since. The http_exception class also contains a std::error_code field. Can you take a look at what the error code value...
View Article