While parsing an XML file Stax produces an error:
Unicode(0xb) error-An invalid XML character (Unicode: 0xb) was found in the element content of the d
0xB (vertical tab) is not a valid character in XML. The only valid characters before ASCII 32 (0x20, space) are 0x9 (tab), 0xA (carriage return) and 0xD (line feed).
In short, what you are trying to parse is NOT XML.