XML::soap


NOTE: The features contained in this namespace require an EA (Early Access) license to be accessed. These commands will not function if your system does not have this license installed. For more information about obtaining the necessary license to access these features, please contact your sales representative. For more information, read about the LicenseDetails

Description

Returns information about the current SOAP message.
Note: All XML commands are unavailable beginning in v10.

Syntax

XML::soap element
XML::soap namespace
XML::soap faultcode
XML::soap faultstring
XML::soap faultdetail

XML::soap element

  • Returns the SOAP body root element.

XML::soap namespace

  • Returns the SOAP service namespace.

XML::soap faultcode

  • Returns the SOAP fault code.

XML::soap faultstring

  • Returns the SOAP fault string.

XML::soap faultdetail

  • Returns the SOAP fault detail.

Examples

when XML_BEGIN_DOCUMENT {
  XML::subscribe soap
  XML::collect
}
when XML_EVENT {
  log local0. "SOAP element [XML::soap element]"
  log local0. "SOAP name space [XML::soap namespace]"
  log local0. "SOAP fault string [XML::soap faultstring]"
  log local0. "SOAP fault code [XML::soap faultcode]"
  log local0. "SOAP fault detail [XML::soap faultdetail]"
}