Thursday, June 30, 2011

Select-Xml and nested XPath evaluations

Recall that

>$s = Select-Xml -Xml $x -XPath '//Rule'
>$s | foreach-object { $_.Node ; Select-Xml $_.Node -XPath 'descendant::BooleanProperty' | foreach-object { $_.Node } }
view raw gistfile1.ps1 hosted with ❤ by GitHub

worked but

>$s = Select-Xml -Xml $x -XPath '//Rule'
>$s | foreach-object { $_.Node ; Select-Xml $_ -XPath 'descendant::BooleanProperty' | foreach-object { $_.Node } }
view raw gistfile1.ps1 hosted with ❤ by GitHub

failed with error messages showing that the current iterated value has an XML string representation.

An alternative fix is to explicitly cast the subject of the inner XPath selection to XML, thus

>$s = Select-Xml -Xml $x -XPath '//Rule'
>>$s | foreach-object { $_.Node ; Select-Xml ([xml] $_) -XPath 'descendant::BooleanProperty' | foreach-object { $_.Node } }
view raw gistfile1.ps1 hosted with ❤ by GitHub

though surprisingly

>$s = Select-Xml -Xml $x -XPath '//Rule'
>>$s | foreach-object { [xml] $_ ; Select-Xml ([xml] $_) -XPath 'descendant::BooleanProperty' | foreach-object { $_.Node } }
view raw gistfile1.ps1 hosted with ❤ by GitHub

fails to yield any results from the inner search; and I've not so far determined why. Replacing the final $_.Node by [xml] $_ of course fails because False is not an XML document.

No comments :