I have a library/API that is completely built with C/C++ for over 10 years (under Linux). Now I want to export the API as a web service for other web projects use. I search for the web and narrow down to the following 3 chooses:
- use SWIG to export the API to PHP or other script/web base language
- use gSOAP to export the API as SOAP protocol
- export the API as RESTful service (I can't find any exist framework, any suggestions?)
I want to compare them in terms of
- stability
- easy of use
- performance
SWIG seems easy to use buy I am not sure the stability of it. gSOAP seems very stable but a bit difficult to use and setup.
Any suggestion?