[
Lists Home |
Date Index |
Thread Index
]
Hi Bob,
I would like to know whether "xerces" or "MSXML" has a feature to parser
the DTD programmatically in C#. Please help.
----- Original Message -----
From: "Bob Foster" <bob@objfac.com>
Cc: <xml-dev@lists.xml.org>
Sent: Sunday, March 28, 2004 11:45 AM
Subject: Re: [xml-dev] DTD questions
> Richard Tobin wrote:
> >>What I want to do is simple :
> >>
> >><!ENTITY % test "(oneElem|theOther)">
> >><!ELEMENT root %test;>
> >>
> >>I try with xerces, microsoft and xmlspy parser that all refuse this.
>
> It seems very likely you are making some other mistake. I just tried the
> following DTD with Xerces:
>
> <!ENTITY % test "(oneElem|theOther)">
> <!ELEMENT root %test;>
> <!ELEMENT oneElem ANY>
> <!ELEMENT theOther ANY>
>
> Validates fine with, e.g., this document:
>
> <!DOCTYPE root SYSTEM "testentity.dtd">
> <root>
> <oneElem/>
> </root>
>
> Unless you are trying to put the above in an internal subset, it is not
> your problem. If you are, that is your problem.
>
> Bob Foster
>
>
> -----------------------------------------------------------------
> The xml-dev list is sponsored by XML.org <http://www.xml.org>, an
> initiative of OASIS <http://www.oasis-open.org>
>
> The list archives are at http://lists.xml.org/archives/xml-dev/
>
> To subscribe or unsubscribe from this list use the subscription
> manager: <http://www.oasis-open.org/mlmanage/index.php>
>
|