Qore xml Module 1.8.1
Loading...
Searching...
No Matches

Qore SoapDataProvider module definition

Introduction to the SoapDataProvider Module

The SoapDataProvider module provides a data provider API for SOAP messaging. The SoapDataProvider class allows for introspecting a SOAP schema, while the SoapRequestDataProvider class supports the data provider request-reply API for communication with SOAP servers.

SOAP schemas can be introspected with the following format:

  • requests: operation/request
  • responses: operation/response
    • ex: getInfo/response
    • results in a SoapResponseDataProvider object where the response definition can be introspected

The following classes are provided by this module:

Release Notes

SoapDataProvider v1.1

  • fixed a bug where data providers could return local names as paths with "/" characters in them, breaking some clients traversing the data provider hierarchy (issue 4555)

SoapDataProvider v1.0

  • initial release of the module