XMLContent

  • Freigeben Version: Australia
  • Aktualisiert 12. März 2026
  • 1 Minute Lesedauer
  • A global object that provides methods to iterate over the XML content.

    You can access an XMLContent object by calling getAsXmlContent() on a request object.

    You access XML data in a POST or URL parameter by calling request.postParams.<parameter name>.getAsXmlContent() or request.urlParams.<parameter name>.getAsXmlContent().

    XMLContent - getIterator()

    Returns an XMLElementIterator object for the XML content.

    Tabelle : 1. Parameters
    Name Type Description
    None
    Tabelle : 2. Returns
    Type Description
    XMLElementIterator An object that can be used to iterate over elements in the XMLContent object.

    XMLContent - getIterator(String xPath)

    Returns an XMLElementIterator object for the XML content based on the specified parameter.

    Tabelle : 3. Parameters
    Name Type Description
    xPath String An xPath-like expression that specifies where in the XMLContent object to start.
    Tabelle : 4. Returns
    Type Description
    XMLElementIterator An object that can be used to iterate over elements in the XMLContent object.