SOAP Message Generation
Common Use Cases
Common Use Cases
  Contents
The first logical unit of labour given a SOAP message is XML parsing. This process is delegated to the Apache
Xerces XML parser, which turns a data stream into a data structure. The SOAP semantics are then applied to the
data structure--leading if the process is successful to:
- a method name and a list of actual input parameters, in the case of a SOAP request
- a method name and a list of actual output parameters, in the case of a SOAP response
If the interpretation process fails, the reason for the failure is logged.
SOAP Message Generation
Common Use Cases
Common Use Cases
  Contents
Copyright © 2001 Jean-Marc Rosengard