Found out my issue it was in my parser, this simple fix did the trick in the while loop, I was accedently moving the xml next when parsing.
if(!done){
parser.next();
}
Found out my issue it was in my parser, this simple fix did the trick in the while loop, I was accedently moving the xml next when parsing.
if(!done){
parser.next();
}