The ATML format is based on XML so
you read data the same way:
- Open a DOM document reference to the XML String with the Load XML String VI.
- Pass the given XPath Expression to the Get All Matched Nodes VI to find all nodes (tags) within the XML that match the given XPath expression.
- For each node, call the Get XML method to retrieve the node string.
- Make sure to call the Close VI to close all XML parser class references that you open.
The only difference is the XPath string e.g. : //trc:TestResultsCollection/trc:TestResults/tr:ResultSet/tr:SessionAction/tr:Data/c:Collection/c:Item/c:Datum/@value
Additional Information
The solution is detailed for LabVIEW only but should be a good guideline for other programming languages.