Edited Issue: http_listener - doesn't report errors correctly after reading...
Taking a look at the code I think I can see this is an issue with the http_listener implementation. Basically it appears the problem is the listener implementation is NOT properly calling the _complete...
View ArticleNew Post: How to listen on * (localhost and ip) without administrator...
I can't understand why administrator privileges are required to listen on non-localhost with not-80 or over 1024 tcp port number. So I can't make a simple web server program which accepts a request...
View ArticleCreated Issue: http_listener - on Linux/iOS/OSX doesn't report underlying...
Looking in http_linux_server.cpp it is easy to see the Boost error code is dropped.
View ArticleNew Post: How to listen on * (localhost and ip) without administrator...
I'm the OP of the discussion that you referenced. The need for Administrator mode is an unwelcome surprise. Administrator mode is probably required for security reasons.The referenced discussion...
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 ArticleClosed Issue: websocket_client: Pass URI in connect instead of taking it with...
The websocket_client takes URI in the constructor. Sometimes, we may not know the URI when creating the object. 2 possible solutions:1. Either provide a constructor that does not take the URI and an...
View ArticleEdited Issue: websocket_client: Pass URI in connect instead of taking it with...
The websocket_client takes URI in the constructor. Sometimes, we may not know the URI when creating the object. 2 possible solutions:1. Either provide a constructor that does not take the URI and an...
View ArticleEdited Feature: websocket_client: Expose the boost native handle to set...
A customer has requested support for client certificates in our desktop websocket implementation.One option is to expose the boost native handle so that users can set the certificate themselves.
View ArticleEdited Task: start using binscope on OS X, investigate what else [209]
An internal customer hit issues with the Quality Essentials requirement about running binscope for OS X. We need to start running this, perhaps as part of sign off. Someone needs to investigate all the...
View ArticleNew Post: Issue sending http request, no connection at all?
I am currently writing a small piece of code to familiarize myself with the REST SDK's JSON capabilities some more and following the JSON example in the documentation I have this:pplx::task<void>...
View ArticleNew Post: Getting error " undefined reference to...
Please forgive me if I'm 'doing it wrong' posting this as a thread, this is my very first post here. So, I'm trying to get Casablanca working, but even trying to include the headers ala the Bingrequest...
View ArticleNew Post: Issue sending http request, no connection at all?
Suggest you try the URL in a browser. What does it return? The shorter the program, the more likely you are to get feedback. Try reposting as a program of around 10 lines.
View ArticleNew Post: Getting error " undefined reference to...
I was able to build and run your test program successfully. Looks like your g++ command args are wrong. Try this:g++ testcasa.cpp -std=c++11 -I /home/johnny/casablanca/Release/include -L...
View ArticleNew Post: Getting error " undefined reference to...
Great, following your advice also worked on my machine too. Looks like I neglected to add this linker flag: -L /home/johnny/casablanca/Release/build.release/Binaries I guess I mistakenly assumed the...
View ArticleNew Post: Issue sending http request, no connection at all?
Hi GrandaThePanda, I didn't try your code out but looking at it, it looks like you are starting and asynchronous operation and not waiting for it complete. Your function WowRealmCheck returns a task,...
View ArticleNew Post: Issue sending http request, no connection at all?
Steve, Thank you very much that did the trick and thank you very much for the resources, I'm new to working with ppl, so that helps greatly. Granda
View ArticleCreated Unassigned: missing json iterators [225]
My package is currently not recognizing .cbegin() .cend() .begin() and .end() as valid methods on objects of type web::json::value I double checked the documentation here:...
View ArticleCommented Unassigned: missing json iterators [225]
My package is currently not recognizing .cbegin() .cend() .begin() and .end() as valid methods on objects of type web::json::value I double checked the documentation here:...
View ArticleNew Post: Looking for VS2010 support
HI,Our IT department demand us to use an authorised edition of VS2010, I'm now developing an HTTP client on Win7 using C++ REST and want the program run on XP or Win7. But there seems little support...
View ArticleCommented Unassigned: Memory Leak occurred in VC++(MFC) [17]
I have been working on a project with VC++(MFC). (Using VS 2012 update 2)I just added http_client header files.However, a memory leak has occurred.```Detected memory leaks!Dumping objects ->{420}...
View Article