Forum Discussion
Philip_Baird
13 years agoCommunity Hero
Hi Julia, I have been doing something similar for creating XML Requests to POST via an XMLHTTPRequest.
The form I used was to parse the XML to an IXMLDOMDocument as such
var xmlDocument = Sys.OleObject( "Msxml2.DOMDocument" );
xmlDocument.load( Files.FileNameByName( "FileName" ) );
then used the prescribed properties and methods on IXMLDOMDocument to access and manipulate elements as required. See:
IXMLDOMDocument
Also, the following may be of use, it is where I got my information from
SmartBear XML documentation
The form I used was to parse the XML to an IXMLDOMDocument as such
var xmlDocument = Sys.OleObject( "Msxml2.DOMDocument" );
xmlDocument.load( Files.FileNameByName( "FileName" ) );
then used the prescribed properties and methods on IXMLDOMDocument to access and manipulate elements as required. See:
IXMLDOMDocument
Also, the following may be of use, it is where I got my information from
SmartBear XML documentation