[Solved] Error:(54) Error parsing XML: mismatched tag


Replace your last <TableRow/> with </TableRow></TableRow>

<TableRow/> is a self closing node </TableRow> is the closing tag for a node, a subtle difference but an important one none the less.

There are many tools which might help you with this kind of issue, I recommend that you use the XML tools plugin, it will really help you identify these kind of issues. You can use it to check for well formed XML as well as XSD/DTD validation, in addition to it’s many formatting tools. But seriously most XML editors will do the job.

1

solved Error:(54) Error parsing XML: mismatched tag