XMLContent

  • 릴리스 버전: Australia
  • 업데이트 날짜 2026년 03월 12일
  • 소요 시간: 1분
  • 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.

    표 1. Parameters
    Name Type Description
    None
    표 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.

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