[XML-SIG] DTD parser

Lars Marius Garshol larsga@garshol.priv.no
28 Nov 1999 15:14:17 +0100


* Dongwon Lee
| 
| given XML DTD, i want to create a customized parse tree for the
| DTD. hopefully, i'd like to avoid writing a parser for this, but to
| re-use an existing s/w. 

xmlproc has a DTD parser which you can use to get DTD information.

| this s/w should be able to do 
| 
| 1) parse any XML DTD and create some kind of parse tree of their own, 

xmlproc allows you to do this:

<URL: http://www.stud.ifi.uio.no/~lmariusg/download/python/xml/xmlproc-dtd-doco.html >

You can choose between letting xmlproc build the object structure, or
using the event-based DTD parser to do that yourself.

--Lars M.