Re: Reading a XML document embeeded in a logfile

Richard Tobin (richard@cogsci.ed.ac.uk)
Mon, 19 Oct 1998 13:48:01 +0100 (BST)


> I can introduce a root element called Logfile and append all the documents
> as a child. But whenever I append a XML document I have to reposition
> the pointer to rewrite XML document root tag.

I don't know if it would work in your particular case, but you might
be able to avoid this by having the document consist of something
like this:

<!DOCTYPE logfile [
<!ENTITY logentries SYSTEM "logentries">
]>
<logfile>&logentries;</logfile>

and appending elements to the logentries external entity rather than
to the logfile itself.

-- Richard