XML::address

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

Queries the elements of a WS-Addressing header within a SOAP message.
Note: All XML commands are unavailable beginning in v10.

Syntax

XML::address action
XML::address endpoint
XML::address from
XML::address message_id
XML::address port_type
XML::address replyto
XML::address service_name
XML::address to

XML::address action

  • Return the WS-Addressing ‘action’ field

XML::address endpoint

  • Return the WS-Addressing ‘endpoint’ field

XML::address from

  • Return the WS-Addressing ‘from’ field

XML::address message_id

  • Return the WS-Addressing ‘message_id’ field

XML::address port_type

  • Return the WS-Addressing ‘port type’ field

XML::address replyto

  • Return the WS-Addressing ‘reply to’ field

XML::address service_name

  • Return the WS-Addressing ‘service name’ field

XML::address to

  • Return the WS-Addressing ‘to’ field

Examples

when XML_BEGIN_DOCUMENT {
  XML::subscribe addressing
  XML::collect
}
when XML_EVENT {
  log local0. "Found the following WS-Addressing elements in the SOAP request"
  log local0. "Action: [XML::address action]"
  log local0. "Endpoint: [XML::address endpoint]"
  log local0. "From: [XML::address from]"
  log local0. "Message Id: [XML::address message_id]"
  log local0. "Port Type: [XML::address port_type]"
  log local0. "ReplyTo: [XML::address replyto]"
  log local0. "Service Name: [XML::address service_name]"
  log local0. "To: [XML::address to]"
}