I\'ve encountered (what I think is) a strange behavior when using the sax parser, and I wanted to know if it\'s normal.
I\'m sending this XML through the SAX parser:
This message describes the same problem (which I had as well) and the response says to
ask the parser to replace entities values
What that means is when you are setting up your context, set the option like this:
xmlParserCtxtPtr context = xmlCreatePushParserCtxt(&yourSAXHandlerStruct, self, NULL, 0, NULL);
xmlCtxtUseOptions(context, XML_PARSE_NOENT);