[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: required data

  • From: Rick JELLIFFE <ricko@g...>
  • To: ",Xml-Dev" <xml-dev@l...>
  • Date: Wed, 26 Jul 2000 15:48:47 +0800

javascript currentnode
Craig Miller wrote:
> 
> I currently have a dtd as follows:
> 
> <?xml version="1.0" encoding="UTF-8"?>
> <!ELEMENT authentication (sessionid, serialnumber, username)>
>         <!ELEMENT sessionid (#PCDATA)>
>         <!ELEMENT serialnumber (#PCDATA)>
>         <!ELEMENT username (#PCDATA)>
> 
> The xml file looks like:
> 
> <?xml version="1.0" encoding="UTF-8"?>
> <!DOCTYPE authentication SYSTEM "auth.dtd">
> <authentication>
>         <sessionid>12345</sessionid>
>         <serialnumber>67890</serialnumber>
>         <username>Hello</username>
> </authentication>
> 
> I was wondering if there is a way to make the data required, not just the
> tag.  For example, if I remove <sessionid>12345</sessionid> from the xml
> file then it fails, as it should.  I would however like it to fail if the
> tag looks like this also <sessionid></sessionid>.  Is there a way to mark
> the dtd to fail if the value is NULL.
 
The mania against DTDs has made developers disinclined to provide proper
notation handling in XML systems.  This is how it could work with DTDs :

<!NOTATION non-empty SYSTEM "javascript:currentNode.value.length() > 0;
">
<!ATTLIST session
   type NOTATION (non-empty) "non-empty" >

but then you need 
1) a simple dispatcher to check the current node against notation, as
part of validation.
2) a javascript interpreter (or whatever).

If you use Schematron schema language at
http://www.ascc.net/xml/resource/schematron/schematron.html
you can do
 <rule context="sessionid">
   <assert test="srting-length(text()) &gt; 0" />
 </rule>
and there are matches for specifying that certain characters can or
cannot be found in the contents too.

XML Schemas will be pretty good for this: you can specify regular
expressions for strings and numbers in ranges.

Rick Jelliffe

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.