Commented Issue: Compiling cpprest/http_client.h with g++ -Wall results in...
Compiling any code using the SDK with "g++ -Wall" results in more than a hundred warnings. The warnings are harmless: 70 of them are `-Wunknown-pragmas` and 33 more are `-Wreorder`, but it would still...
View ArticleCommented Issue: websocket_client - uncatchable exception when receive/close...
Mentioned in a comment in https://casablanca.codeplex.com/workitem/177.raffaeler wrote Fri at 6:41 AM [x] Using 2.1.0 here. I could not even catch the exception with websocket_exception nor "..." When...
View ArticleEdited Issue: websocket_client - repeated connect/disconnect leads to abort()...
In chat client application, to reconnect to the server it keep uses move assignment operation to re-initialize the websocket_client instance. On repeatedly connecting and disconnecting, the move...
View ArticleClosed Issue: websocket_client - repeated connect/disconnect leads to abort()...
In chat client application, to reconnect to the server it keep uses move assignment operation to re-initialize the websocket_client instance. On repeatedly connecting and disconnecting, the move...
View ArticleCommented Issue: websocket_client - repeated connect/disconnect leads to...
In chat client application, to reconnect to the server it keep uses move assignment operation to re-initialize the websocket_client instance. On repeatedly connecting and disconnecting, the move...
View ArticleEdited Issue: websocket_client - set_data using istream should have a default...
codereview comment from Steve:"Should the len variable default to some value which means read until the end of the stream?"While setting data on a websocket outgoign message using stream interfaces,...
View ArticleCommented Feature: http_client - linux/mac: expose boost native handle to set...
For windows desktop and winrt, http_client_config has an option: set_nativehandle_options() that allows the users to set properties on the underlying connection (like XHR_TIMEOUT, client certificates...
View ArticleCommented Feature: http_client - linux/mac: expose boost native handle to set...
For windows desktop and winrt, http_client_config has an option: set_nativehandle_options() that allows the users to set properties on the underlying connection (like XHR_TIMEOUT, client certificates...
View ArticleCreated Feature: websocket_client - wss support on non-WinRT [255]
This is the largest feature we are missing in our websocket_client right now on none WinRT platforms.
View ArticleCreated Unassigned: websocket implementation on 32-bits cannot send messages...
This is primarily because we require the entire message to be buffered before sending. In order to support larger messages on 32-bit platforms, we'll need to have message fragment support first.
View ArticleEdited Feature: websocket implementation on 32-bits cannot send messages...
This is primarily because we require the entire message to be buffered before sending. In order to support larger messages on 32-bit platforms, we'll need to have message fragment support first.
View ArticleEdited Issue: Json string parsing error: \uXXXX (narrow strings) [252]
Under Linux where strings are narrow, json string parsing incorrectly handles \uXXXX escape sequences (ex: \u20AC = €).In version 2.2.0, json_parsing.cpp line 724, the 16 bits char value is truncated...
View ArticleCreated Unassigned: HTTP Authentication support in non-windows platform [257]
Now authentication support is only in windows.
View ArticleCommented Unassigned: HTTP Authentication support in non-windows platform [257]
Now authentication support is only in windows.Comments: This is a duplicate of issue https://casablanca.codeplex.com/workitem/89. Please vote on and comment on existing issue.
View ArticleClosed Unassigned: HTTP Authentication support in non-windows platform [257]
Now authentication support is only in windows.
View ArticleCreated Issue: http_client - iOS/OS X/Android certificate verification...
When using the iOS and JNI APIs for verification failure is just true/false right now. The OpenSSL callback takes true/false. Ideally we should provide more error information to the user. Perhaps an...
View ArticleClosed Issue: http_listener - 1.5 times slower than HTTP.sys when handling...
Listener_ConnectionMgtTest_Listener_Casa : Do not reuse the connection. Request is sent from the client with "Connection Close" header.Listener_ConnectionReuseTest_Listener_Casa : Reuse teh connection,...
View ArticleNew Post: Send message to Amazon SQS
I want to send a message to an SQS. I am new in using Casablanca. I have seen the Getting started tutorial, but when it comes to sending message to a SQS I am getting stuck. Is there any small code or...
View ArticleEdited Feature: websocket_client - provide ability to register call back...
The websocket_client class does not provide the ability to attach a call back handler for received messages. One of the benefits of web socket is that the client does not need to keep polling for...
View ArticleEdited Issue: JSON serializer generates invalid JSON in non-C locales [118]
Using Casablanca 2.0, compile and run the following program:```#include <assert.h>#include <locale.h>#include <cpprest/json.h>int main(){ setlocale(LC_ALL, "fr-FR"); auto x =...
View Article