Hi all

I'm using the QT object QXmlStreamReader for parse and read an xml file. It work very well except for a thing I'm currently not able to figure out. In the xml I need to parse there are some node contain entity tag. For make and example check the following lines:

.....
<!ENTITY xxx "entity text">
.....
<test>&xxx;</test>
.....

When, using QXmlStreamReader, I get the "test" node (QXmlStreamReader::Characters) using function text() return me "entity text" that is correct in normal mode. However I need to have the entity label instead of entity text. This mean, once found the node "test" I need to get the label "xxx" instead of corresponding text.

Is there a way to get this data?

Thank you