[
Lists Home |
Date Index |
Thread Index
]
I believe XML Spy 2004 [1] has this functionality.
[Contrary to how it may seem today, I do not work for Altova nor am I
paid to promote their products :)]
Kind Regards,
Joe Chiusano
Booz | Allen | Hamilton
Strategy and Technology Consultants to the World
[1] http://www.xmlspy.com/features_schema.html
Bruce Kulik wrote:
>
> I am looking for a software module to help create valid XML given a
> DTD and an element name and data. For example, suppose you have the
> following simple DTD:
>
> <!ELEMENT a (x , y , z)>
> <!ELEMENT x (#PCDATA)>
> <!ELEMENT y (q | r)*>
> <!ELEMENT z (#PCDATA)>
> <!ELEMENT q (#PCDATA)>
> <!ELEMENT r (#PCDATA)>
>
> Calling for a new "r" element with string "data" on an empty tree
> would result in:
>
> <a>
> <x/>
> <y>
> <r>data</r>
> </y>
> </a>
>
> Then calling for a new "q" element with string "string" would result
> in:
>
> <a>
> <x/>
> <y>
> <r>data</r>
> <q>string</q>
> </y>
> </a>
>
> Does anybody know of such a library or product?
>
> Bruce Kulik
>
> -----------------------------------------------------------------
> 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://lists.xml.org/ob/adm.pl>
|