As title, in Linux System,how can I call web service method in C++?
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.
Use open source libraries like gsoap or Apache Axis.
Note that this has nothing to do with the underlying platform, Web services need the data to be encapsulated in a SOAP object(in case of SOAP web service) and these libraries just provide you the framework to do so.
The above libraries use the wsdl of the web service as an input parameter and generate the necessary stubs for communication with the web service.They abstract the nitty gritty’s of communication with the web service from the end user and provide simple interfaces to get and set the data to be sent or received over the web service.