c++肥皂客户端
有没有类似于 PHP 的 C++ 的 SoapClient 类?我正在为 magento API 转换一组 php 脚本。我正在处理大量 xml 数据,并且希望它运行得更快。
Is there something similar to PHP's SoapClient class for c++? I am working on converting set of php scripts for the magento API. I'm processing a ton of xml data and I want it to run faster.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有gSoap。这是一个相当不错的 C 和 C++ SOAP 框架
Apache 也有 Axis
gSoap 似乎比 Axis C++ 更成熟,但是 gSoap API 是 C,而不是 C++,因此如果您需要本机 C++ API,那么 Axis C++ 将是最佳选择。不过,为 gSoap API 编写 C++ 包装器相当简单
There's gSoap. It's a pretty decent SOAP framework for C and C++
Apache also have a C++ implementation of Axis
gSoap seems to be more mature than Axis C++, however the gSoap API is C, not C++, so if you need a native C++ API then Axis C++ would be the way to go. Writing a C++ wrapper for the gSoap API would be fairly trivial though