I am trying to parse the following xml. I can access the WeekNumber easily but cannot access the children for EmployeeRatesLevelA and EmployeeRatesLevelB. The goal is to sav
Element.getElementsByTagName("EmployeeRatesLevelA") where Element should be DataSet. Or you can use
http://java.sun.com/javase/6/docs/api/org/w3c/dom/Node.html#getChildNodes()
then filter all the childs until you find the ones you want to.