XML reader for reading Settings.xml file

In knime 2.7.4 a XML file called "settings" is generated for each node in the workflow. One property of this XML file contains the name of the node

for eg :

<config key="nodeAnnotation">
<entry key="text" type="xstring" value="arffInFile"/>

I want to read this XML file and extract the node name. I have installed the XML extension and tried to do XML Reader with XPath, but was unsuccesful. I am not an advaced user in XML technology, so if you have done this before please illustrate here.

 

I am attaching the sample "settings.xml" file

The XML name space was giving problem when I tried with the Xpath. I had to implement XPath expression as given below, at last which started working as intended.

/*[local-name()='config']/*[local-name()='config'][@key='nodeAnnotation']/*[local-name()='entry'][1]/@value