WebLOAD provides an embedded, third-party XML parser object to improve the multi-platform support for XML parsing within the WebLOAD environment. The XML parser object can be used instead of MSXML and Java XML parsing, resulting in lower memory consumption and increased performance during load testing.
The XML parser object can be used to reference any element in an XML document. For desired details of a specified element.
http://xml.apache.org/xerces-c/).
The XML parser object is instanced as follows:
xmlObject = new XMLParserObject();
receives an XML string instead of a URI.
detailed example of the implementation of the XML parser object.
Example
xmlObject = new XMLParserObject();
nodeType = domNode.getNodeType();
nodeParent = domNode.getParentNode().getNodeName();
numOfChilds = domNode.getChildNodes().getLength();
domNode1.insertBefore(newNode1, domNode);