Avatar

Level 10

You can do this but you may not be able to load the XML from a web URL. If the XML is an output of a WSDL call, then you may be able to.

You can traverse thru the XML nodes using xfa.resolveNode method.

The below code gives you the value of a node two levels deep from the root node. You can use this idea to traverse thru your XML nodes to get the specific value.

     xfa.resolveNode("$record.<tagname>.<tagname>").value;

Thanks

Srini