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

Re: DOM versus XDM: Differences in handling CDATA sections,en

  • From: Martin Honnen <Martin.Honnen@gmx.de>
  • To: "Costello, Roger L." <costello@mitre.org>
  • Date: Fri, 12 Nov 2010 18:53:37 +0100

Re:  DOM versus XDM:  Differences in handling CDATA sections
Costello, Roger L. wrote:

> ------------------------------
> ENTITIES: DOM VERSUS XDM
> ------------------------------
> 
> This XML document uses an entity:
> 
>     <root>
>         hello if A &lt; B then ... world
>     </root>
> 
> DOM and XDM represent entities differently: 
> 
>    - A DOM tree will have a node for the entity, as evidenced by 
>      the fact that the DOM API has a method for accessing entities [4]. 
>      Here is a graphic I created to show the DOM tree of the XML document:

To cite again from [4]: "Moreover, the XML processor may completely 
expand references to entities while building the structure model, 
instead of providing EntityReference objects".

That is also my experience of the DOM implementations in browsers like 
Mozilla, Opera or Safari, the following Javascript sample

var doc = new DOMParser().parseFromString([
   '<!DOCTYPE root [',
   '<!ENTITY foo "<bar>foobar</bar>">]>',
   '<root>&foo;</root>'
].join('\r\n'), 'application/xml');
var root = doc.documentElement;
root.childNodes.length + '; ' + root.firstChild.nodeType + '; ' + 
root.firstChild.nodeName

outputs "1; 1; bar" so the parser has resolved the entity reference and 
put the "bar" element as the child of the "root" element into the DOM tree.


-- 

	Martin Honnen
	http://msmvps.com/blogs/martin_honnen/


[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index]


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.