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.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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