Please help me understand the _XMLGetField function, it is not returning the field in my sample. For each Hotfix in the XML I want it to return the filename.
Here is the XML:
<Hotfix_List>
<Build>
<title>Hotfix Install for Windows XP</title>
<version>1.0</version>
</Build>
<Hotfix>
<name>KB885836</name>
<filename>"WindowsXP-KB885523-x86-enu.exe"</filename>
<switches>/quiet /passive /norestart</switches>
</Hotfix>
<Hotfix>
<name>KB887742</name>
<filename>WindowsXP-KB885836-x86-ENU.exe</filename>
<switches>/quiet /passive /norestart</switches>
</Hotfix>
<Hotfix>
<name>KB885836</name>
<filename>WindowsXP-KB887742-x86-ENU.exe</filename>
<switches>/quiet /passive /norestart</switches>
</Hotfix>
</Hotfix_List>
Here is the Code:
#include <_XMLDomWrapper.au3>
#include <Array.au3>
$sXMLFile = "Hotfix.xml"
$result = _XMLFileOpen($sXMLFile)
if $result = 0 then Exit
Local $nodeCount = _XMLGetNodeCount ("//Hotfix_List/*")
If $nodeCount > 0 Then
Local $x, $z, $sRet = _XMLSelectNodes ("//Hotfix_List/Hotfix")
If IsArray($sRet) Then
For $x = 1 To $sRet[0]
If $sRet[$x] = "Hotfix" Then
msgbox(0,"Test",$sRet[$x])
msgbox(0,"Test","Filename: " & _XMLGetField("//Hotfix_List/Hotfix/filename"))
EndIf
Next
EndIf
EndIf
Exit