C++接收 JSON 并写入数据库的应用程序

发布于 2024-12-01 21:56:58 字数 116 浏览 0 评论 0原文

我想这是一个新手问题,但无论如何......

我如何让计算机上运行的应用程序将数据发送到远程服务器上运行的另一个应用程序,该服务器处理该数据并将其写入数据库?我也想验证传入的数据

谢谢,

I guess this is a novice question, but here goes anyway...

How do I get an application running on a machine to send data to another application running on a remote server which processes this data and writes it to a database? I would like to also authenticate the incoming data as well

Thanks,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冬天旳寂寞 2024-12-08 21:56:58

您的应用程序基本上需要以下组件:

  • 网络通信模块(客户端/服务器)
  • JSON 解析器/编码器
  • 身份验证模块
  • 数据库访问模块

对于优秀的 C++ 网络库,请查看 Boost.Asio,有很多如何使用它的例子。

对于 JSON 库,有一个基于 Boost 的 JSON Spirit

可以通过以下方式实现简单的身份验证HMAC 签名(例如使用 OpenSSL 库)

You basically need the following components in your application:

  • network communication module (client/server)
  • JSON parser/encoder
  • authentication module
  • database access module

For excellent C++ network library have a look at Boost.Asio, there are many examples how to use it.

For JSON library there is a Boost-based JSON Spirit

Simple authentication can be achieved with HMAC signatures (for example using OpenSSL library)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文