Closed GoogleCodeExporter closed 9 years ago
It's impossible to load XML document in chunks; you'll have to wait for all
content to arrive and store it in a single contiguous buffer before calling
load_buffer.
Alternatively, if libcurl provides a C++ stream, you can load a document from
it using load() function; pugixml will internally read all data from the stream
to a contiguous buffer. If you go that way, make sure to use the trunk version
instead of 1.0, since 1.0 does not support non-seekable streams (any HTTP
stream is unlikely to support seeks).
Original comment by arseny.k...@gmail.com
on 22 Jul 2011 at 9:55
Thanks for a quick reply.
Original comment by devesh...@gmail.com
on 22 Jul 2011 at 9:58
Original issue reported on code.google.com by
devesh...@gmail.com
on 22 Jul 2011 at 9:38