Generic WebService (SOAP) client library for C++

前端 未结 3 793
我在风中等你
我在风中等你 2020-12-30 05:14

I\'m looking for a simple C++ WebService Client Library that can be easily linked into my application.

Preferably this library:

  • can be used to access a
3条回答
  •  无人及你
    2020-12-30 05:56

    Axis2C : http://axis.apache.org/axis2/c/core/index.html

    Axis2C ticks most of the above , please check for static linking. .

    EDIT: As per last few messages on the list, static linking is incomplete. The below still holds:

    Perhaps I do not understand the question correctly. Any web service you call you need to specify the endpoint URL and the operation & parameters.

    Are you referring to dynamically "discovering" the services & presenting the option to call them...? If so I doubt this is possible.

    If you are referring to generic framework, SOAP messages are client end responsibility any way... You should not have a problem wrapping them under some of the toolkit API's. WSDL code generation is not mandatory. I have written a few services from scratch, i.e. You can set endpoint, service and craft the SOAP message, parameters, headers etc. as you feel.

    Cheers!

提交回复
热议问题