c++ soap client
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.
http://www.php.net/manual/en/cl开发者_如何学Pythonass.soapclient.php
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
精彩评论