Digester: Extracting node name
- by CaptainHastings
Hi Guys,
Is it possible to extract the node name using apache digester?
So, if the xml looks like
<furniture>
<sofa>
.....
</sofa>
<coffeeTable>
.....
</coffeeTable>
</furniture>
is it possible to extract the node name "sofa", "coffeeTable"?
I know it is possible using xpath but is it possible using digester?
Cheers