Daniel Veillard wrote:
On Wed, Apr 09, 2008 at 09:49:30AM +0200, Holger Kaelberer wrote:Is there an equiv. when using xmlSchemaValidateStream or any other way to access the parser ctxt of the parsed file?:/--- ... state->ctxt = ...; ... ret = xmlSchemaValidateStream(vctxt, buf, XML_CHAR_ENCODING_NONE, (xmlSAXHandlerPtr) parser_handler, state); ---/ Can someone help me with that?Did you check within a debugger ? That ought to be possible i think.
But what do I set my state->ctxt to (supposed to be a xmlParserCtxtPtr) as I don't have the parser-Ctxt of the parsed xml-file? I first thought of passing the xmlSchemaValidCtxtPtr and than using vctxt->parserCtxt in my SAX-handler, but that does not work as the parserCtxt-element is not "public".
Thanks, Holger