I have the following xml document:
<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd">
<properties>
<comment>My Happy Configuration</comment>
<entry key="HappyKey">Happy Key</entry>
<entry key="SadKey">Sad Key</entry>
<entry key="AngryKey">Angry Key</entry>
<entry key="ConfusedKey">Confused Key</entry>
...
</properties>
I am executing the following xpath query:
/properties/entry[@key='HappyKey']
I anticipate this to return HappyKey, however it returns nothing.