I want to identify xml nodes that does not have specific attribute. Below is the sample xml. I want to retrieve nodes that does have the "response" attribute. I found atricles that help identify node that has a specific attribute but not my requirement.
<top node>
<viewentry position=1 children = 2>
</viewentry>
<viewentry position=1.1 children = 1 response=true>
</viewentry>
<viewentry position= 1.1.1 response=true>
</viewentry>
<viewentry position=2 children=1>
</viewentry>
<viewentry position=2.1 response=true>
</viewentry>
</top node>