Since you do not have an XML Schema, there is no fool-proof way of finding the offending code, for example XML allows for recursive structures. But you CAN write your own XML Schema, although that will potentially be a lot of stuff to learn. Alternatively, I would create a simple, stupid, validator of the node level and the element name, as so:
private void parseAndCheckStructure(XMLStreamReader reader) throws XMLStreamException {
// first read header, this is probably not the offending element (?)
int event = -1;
while (reader.hasNext()) {
event = reader.next();
if (event == XMLStreamConstants.START_ELEMENT){
break;
} else if (event == XMLStreamConstants.END_DOCUMENT) {
throw new XMLStreamException();
}
}
// read the rest of the document.
int level = 1;
do {
event = reader.next();
if (event == XMLStreamConstants.START_ELEMENT){
level++;
String localName = reader.getLocalName();
if(localName.equals("FirstElement")) {
parseFirstElementWithALoopLikeTheCurrent(reader);
level--;
} else if(localName.equals("SecondElement")) {
parseSecondElementWithALoopLikeTheCurrent(reader);
level--;
} else throw new RuntimeException("Unknown element " + localName + " at level " + level + " and location " + reader.getLocation());
} else if(event == XMLStreamConstants.END_ELEMENT) {
// keep track of level
level--;
}
} while(level > 0);
}
Alternatively, parse the whole document within the above do-while loop, and do checks like
if(level == 4 && localName.equals("MyElement")) {
// ok
} else {
// throw exception with the location
}
It sucks, but it works.