- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我刚开始使用 RESTful 编程,并尝试使用 Casablanca sdk ( https://github.com/Microsoft/cpprestsdk) 在 c++ 中编写程序。我知道我需要使用 GET、POST、PUT 和 DEL 方法来进行数据传输等。但我似乎无法找到任何有关如何执行此操作的示例。我目前需要从客户端向服务器发送一个整数值,并从服务器获得一个 bool 响应。我无法在 Casablanca 的文档或网络中找到任何好的示例。任何有关如何进行此简单传输的帮助将不胜感激。
最佳答案
花更多时间探索documentation互联网上的各种示例可能会为您提供答案。
基本上,您必须设置一个 http 监听器,作为服务器,它将监听特定 url 上的客户端请求。
然后客户端可以在该 url 上发送数据,与其通信。
不过,如果你想交换json格式的数据,
服务器看起来像这样
void handle_post(http_request request)
{
json::value temp;
request.extract_json() //extracts the request content into a json
.then([&temp](pplx::task<json::value> task)
{
temp = task.get();
})
.wait();
//do whatever you want with 'temp' here
request.reply(status_codes::OK, temp); //send the reply as a json.
}
int main()
{
http_listener listener(L"http://localhost/restdemo"); //define a listener on this url.
listener.support(methods::POST, handle_post); //'handle_post' is the function this listener will go to when it receives a POST request.
try
{
listener
.open() //start listening
.then([&listener](){TRACE(L"\nstarting to listen\n");})
.wait();
while (true);
}
catch (exception const & e)
{
wcout << e.what() << endl;
}
}
客户会是,
int main()
{
json::value client_temp;
http_client client(L"http://localhost");
//insert data into the json e.g : json::value(54)
client.request(methods::POST, L"/restdemo", object)
.then([](http_response response)
{
if (response.status_code() == status_codes::OK)
{
return response.extract_json();
}
return pplx::task_from_result(json::value());
})
.then([&client_temp ](pplx::task<json::value> previousTask)
{
client_temp = previousTask.get();
})
.wait();
}
您的服务器回复将存储到“client_temp”中
关于c++ - 使用 casablanca c++ rest sdk 发送接收,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38933404/
我需要设置一个应用程序来监听多个 Urls,但不知道何时开始多少 - 这最终将从数据库中读取,但目前它们在演示中进行了硬编码。 // MultipleListenerTest.cpp : Define
我有一个 api https://api.gm-system.net/api/authenticate/searchStaffs/searchText,它返回一个员工列表。 这里是我使用 cppres
如何在 C++ 中优雅地解析请求的 URI(服务器端)? URI 定义为 Casablanca Documentation作为: protocol : // server [: port] / pat
Casablanca(Microsoft 的 C++ REST SDK)是否用于提供网络 Assets (html、图像、js、css 等)? 我用 Casablanca 构建了一个 REST 服务器
我正在尝试使用 C++ REST API我使用以下方式写入 json。 json::value resp; std::vector portfolio; // Populate portfolio t
我正在尝试修改 Casablanca tutorial包括访问 Prosper API 的基本 HTTP 身份验证: auto fileStream = std::make_shared(); //
我正在尝试从 Casablanca 中读取 JSON 响应。发送的数据如下所示: { "devices":[ {"id":"id1", "type":"type1"}, {"id":"i
我刚开始使用 RESTful 编程,并尝试使用 Casablanca sdk ( https://github.com/Microsoft/cpprestsdk) 在 c++ 中编写程序。我知道我需要
如标题所示,我有一个可用的客户端服务器应用程序,但现在我尝试重新设计我的软件以使其更加优雅。所以我创建了一个 Server 类来创建一个 http_listener 并处理 POST 和 GET 方法
我有以下功能来检查授权 header 。 bool is_authorized(http_request request) { bool isAuthorized = false; i
https://msdn.microsoft.com/library/jj950082.aspx有以下代码。 void IterateJSONValue() { // Create a JSO
作为有关 Rest 服务的学习过程的一部分,我尝试使用 Microsoft c++ REST sdk“casablanca”构建一个简单的 HTTP 监听器。我最初的目标是测试它是否可以接收指向 lo
我很难将编译器命令行调用转换为 CMakeLists.txt,目标是使用 Microsoft Rest SDK casablanca。因为我是新手,所以我不知道我的 CMakeLists.txt 有什
有没有人评估过这些库作为跨平台库的优缺点? 我知道 NSPR 非常古老且稳定,但它与 Microsoft Casablanca C++ rest SDK 和 Facebook folly 相比如何。
我使用的是 cpprestsdk v. 2.8.0。我需要在 websocket 上禁用证书验证 websocket_client_config wcc; websocket_client clien
我正在使用 C++ REST SDK 的 http 监听器2.8 并注意到以下内容。如果我向此监听器发送以下 URL: http://my_server/my%2fpath?key=xxx%26yyy
我正在使用 Casablanca C++ REST 库来处理 JSON 数据。这是我用来从头开始创建新 JSON 对象并添加键值对的代码。 web::json::value temp; // 1 -
我有以下代码应该读取文本文件的内容并将其解析为 JSON try { string_t importFile = argv[++i
我是 Json 的新手。我正在使用 codeplex (casablanca) 来读取 json 值。 下面是示例 json 字符串: [{ "rollno": 2000, "name": "suha
我是 C++ REST(“卡萨布兰卡”)的新手。我看了教程here .之后,我从那里获取了示例代码并尝试在我的机器上运行它。 下面是代码 std::map dictionary; void handl
我是一名优秀的程序员,十分优秀!