spacer

Webref WebRef   Sitemap · Experts · Tools · Services · Newsletters · About i.com

home / experts / javascript / column103


Web Services, Part VIII: Reading DTDs with JavaScript

Technical Lead
Thomson Reuters (Markets) LLC
US-NY-New York

Justtechjobs.com Post A Job | Post A Resume
Developer News
Microsoft Shows Off Silverlight 4, IE9 Plans
Metasploit Expands Vulnerability Test Framework
HyperCard Reborn?


Loading DTDs with the Browser

Let's see the entity reference substitution in action. There are three types of documents involved in our demo: XML, DTD, and XSL. The XML file includes the data itself. The DTD defines the data file structure and reference substitution. The XSL file converts the data to HTML. We discussed how to write the XSL file in Column 100. Try it now. You should get the following window:

Notice how the entity reference &month; was substitute by April, and &preparedby; was substituted by John Smith. Also notice that the single-character entity references &lt; and &gt; around April got substituted by < and >, respectively.

When reading an XML file with your browser, you can use the DTD file only to define reference substitution, and not for defining the whole document structure, as we did above. Consider the following short DTD file:

<!ENTITY preparedby "John Smith">
<!ENTITY month "April">
<!ENTITY day "Monday, ">

The file mydvd8.xml calls this DTD. Try it. You should get the same output as above.


Next: How to load DTDs with JavaScript

http://www.internet.com

internet.commediabistro.comJusttechjobs.comGraphics.com

Search:

WebMediaBrands Corporate Info

Legal Notices, Licensing, Permissions, Privacy Policy.
Advertise | Newsletters | Shopping | E-mail Offers | Freelance Jobs

webref The latest from WebReference.com Browse >
Rolling Out Your Own HTML Application Version Control · HTML 5: Client-side Storage · Working with Ajax Server Extensions
Sitemap · Experts · Tools · Services · Email a Colleague · Contact FREE Newsletters 
 The latest from internet.com
Wi-Fi Product Watch, November 2009 · Chip Market Recovering From '08 Collapse · Low-Cost Tools to Kickstart Your New Business


Produced by Yehuda Shiran and Tomer Shiran
All Rights Reserved. Legal Notices.
Created: February 11, 2002
Revised: February 11, 2002

URL: http://www.webreference.com/js/column103/***PASTE FILENAME HERE***