Mircea Gliga <[email protected]> writes: > Thanks for the response. > I've updated the code, I'm using xmlReaderForIO() with an IO read function. > When some data is received on the network, my function parse() is called, with > the data buffer and size.
Actually I think my suggestion was wrong: because of the way your program is structured you want a push parse not a pull parser, so you should use xmlCreatePushParserCtxt() and xmlParseChunk() instead of the xmlReader functions. _______________________________________________ xml mailing list, project page http://xmlsoft.org/ [email protected] http://mail.gnome.org/mailman/listinfo/xml
