C++接收 JSON 并写入数据库的应用程序
我想这是一个新手问题,但无论如何......
我如何让计算机上运行的应用程序将数据发送到远程服务器上运行的另一个应用程序,该服务器处理该数据并将其写入数据库?我也想验证传入的数据
谢谢,
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的应用程序基本上需要以下组件:
对于优秀的 C++ 网络库,请查看 Boost.Asio,有很多如何使用它的例子。
对于 JSON 库,有一个基于 Boost 的 JSON Spirit
可以通过以下方式实现简单的身份验证HMAC 签名(例如使用 OpenSSL 库)
You basically need the following components in your application:
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)