In Powershell I would do something like this:

 Code:
$XML = CreateObject("Microsoft.XMLDOM")
$XML.LoadXML("Insert Elements here")
$XML.Save($Filename)


This would have the effect of creating an XML instance, manipulate the xml structure and finally save the xml into a document.

However in Kixtart, I need to do something like this:

 Code:
$XML = CreateObject("Microsoft.XMLDOM")
$= $loadXml.Load($filename)
$XML.Save($Filename)


So like Powershell, I can create an XML instance and save the xml into a document. However, I need to load the xml content from a file - Kixtart doesn't seem to support the same ability as Powershell to "load" the xml from whatever I type in the section ("Insert Elements here").

Does Kixtart not have a command similar to $XML.LoadXML("Insert Elements here")