There is no problem iterating through this:
<entries>
<entry>
<name>Kitten</name>
<special>Yup</special>
</entry>
<entry>
<name>Gato</name>
<special>Nope</special>
</entry>
</entries>
with this approach
for(entry <- data)
...
But now when I try to iterate within an entry
ie:
<entry>
<name>Kitten</name>
<special>Yup</special>
</entry>
I can't actually go through name and then proceed to special instead, it just treats this Node as one item and only goes through one cycle. How do I go through each and every element?