Questions tagged [casablanca]

Casablanca is a Microsoft incubation effort to support cloud-based client-server communication in native code using a modern asynchronous C++ API design.

Casablanca is a Microsoft incubation effort to support cloud-based client-server communication in native code using a modern asynchronous C++ API design. It is a project that starts exploring how to best support C++ developers who want to take advantage of the radical shift in software architecture that cloud computing represents.

190 questions
0
votes
1 answer

NuGet with TeamCity for project shared by 2 solutions - .h file not found

The environment before NuGet (simplified): One project shared by 2 solutions (sol1 and sol2). both solutions are successfully build by TeamCity. Adding NuGet In sol1 I added a package to the project (Casablanca's C++ REST API). In one of the…
Roee Gavirel
  • 18,955
  • 12
  • 67
  • 94
0
votes
1 answer

C++ Casablanca, cant compile in Visual Studio Express 2013 Desktop Safeint3.hpp

so i installed the Casablanca SDK for my project for some json useage. So far so good but when im trying to build my project im getting the following errors : Fehler 9 error C1004: Unerwartetes Dateiende gefunden. C:\sumo-0.20.0 -…
Hannes
  • 442
  • 1
  • 6
  • 23
0
votes
1 answer

How to use Casablanca to call /files (POST) in Dropbox API

I'm using c++ and Casablanca to add Dropbox functionality to our software. I can log in using OAuth 2, get metadata, open files, and save files using files_put successfully. I can't however figure out how to save a file using /files (POST). I'm…
kpg207
  • 1
  • 1
0
votes
1 answer

Trouble adding children using Rest api(Casablanca c++) in firebase

Using POST method it inserts a randomkey as child. I just want "Name: Sudarshan" to be the child of UserList. Can anyone point at what am doing wrong here. return pplx::create_task([] { json::value postData; std::string MY_JSON = "{ …
-1
votes
1 answer

How to call the function in derived class to process handle_post?(Function call missing argument list to create pointer)

in my base class, this is a public non-static member function: void BaseClass::SetPorcessMethod() { //do something Listener.support(methods::POST, this->HandlePost); //do something } In the function above, Listener is a static member…
firstaccount
  • 155
  • 2
  • 13
-1
votes
3 answers

Looping through a list of objects

I was trying to loop through a list that contains objects. I am reading in data using a weather API and storing each data member as in an object and then storing each object in a list. After I store the whole list, I want to be able to loop through…
Matthew S.
  • 321
  • 1
  • 9
  • 22
-1
votes
1 answer

Connect to C++ REST sdk SERVER on Windows from LAN

I have a server written on C++ REST SDK. There's http_listener which listens to "http://localhost:34568". When I try to send a request in browser or from the client to localhost it works fine and I get the responses from my server. But the point…
Nikita
  • 1
-1
votes
1 answer

C++ casablanca vs Mozilla NSPR vs Facebook folly

Has anyone evaluated these libraries for their pros and cons as a cross-platform library? I understand NSPR is very old and stable, but how does it compare to Microsoft Casablanca C++ rest SDK and Facebook folly. Microsoft Casablanca is capable of…
Vink
  • 1,019
  • 2
  • 9
  • 18
-2
votes
1 answer

How do you start more than one thread in C++

I have the following method on a class void Listener::Start() { Logger logger; std::string logMessage("Starting '" + to_utf8string(GetName()) + "' Listener"); http_listener httpListener(GetUri()); std::string…
Paul S Chapman
  • 832
  • 10
  • 37
-3
votes
1 answer

What are the license terms for using Casablanca (C++ REST SDK)?

What are the licensing terms for using Casablanca SDK in a project?
Natesh M
  • 1
  • 1
1 2 3
12
13