OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

 


 

   Re: DTD question

[ Lists Home | Date Index | Thread Index ]
  • From: "James Tauber" <jtauber@jtauber.com>
  • To: "John Martin" <John.Martin@ncmail.net>, <xml-dev@ic.ac.uk>
  • Date: Fri, 2 Jul 1999 11:14:05 +0800

>Greetings.  I'm new to this list and to XML.


Welcome.

>In a DTD, can I base the inclusion of an optional element on an
>attribute?

No, you can't.

>For example, I have:
>
><!ELEMENT NCSB-Message (Service-Version-Number, Service-Release-Number,
>Service-Completion-Code?, Service-Reason-Code?)>
><!ATTLIST NCSB-Message MESSAGE-TYPE (REQUEST | RESPONSE) #REQUIRED>
>
>Is there a way to indicate in the DTD that if the attribute
>MESSAGE-TYPE=RESPONSE, then I want the elements Service-Completion-Code
>and Service-Reason-Code to be required instead of optional?


This kind of subclassing would either

(1) have to be checked by your application
(2) have to be achieved using different element types

(1) is not necessarily a bad thing, as you almost always end up doing some
kind of checking at the application stage anyway.

(2) would work something like:

<!ELEMENT Request (Service-Version-Number, Service-Release-Number,
Service-Completion-Code?, Service-Reason-Code?)>
<!ELEMENT Response (Service-Version-Number, Service-Release-Number,
Service-Completion-Code, Service-Reason-Code)>

The fact that a Request or a Response can occur wherever you previously
allowed an NCSB-Message could be modelled by wrapping the Requests and
Responses in an NCSB-Message. That way you capture the restrictions on where
NCSB-Messages can occur as well as differentiating between Requests and
Responses:

<!ELEMENT NCSB-Message (Request|Response)>

Alternatively, you could just put "(Request|Response)" wherever you
previously had NCSB-Message in content specifications (possibly via a
parameter entity reference).

Hope this helps.

James Tauber




xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/ and on CD-ROM/ISBN 981-02-3594-1
To (un)subscribe, mailto:majordomo@ic.ac.uk the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo@ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa@ic.ac.uk)






 

News | XML in Industry | Calendar | XML Registry
Marketplace | Resources | MyXML.org | Sponsors | Privacy Statement

Copyright 2001 XML.org. This site is hosted by OASIS