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

Re: Beware of XPath expressions that produce false positives

  • From: David Carlisle <d.p.carlisle@gmail.com>
  • To: "Costello, Roger L." <costello@mitre.org>
  • Date: Sat, 24 Sep 2016 22:15:11 +0100

Re:  Beware of XPath expressions that produce false positives


On 24 September 2016 at 22:02, Costello, Roger L. <costello@mitre.org> wrote:

David Carlisle wrote:

Also you are classing attributes as non-empty content
but not namespace nodes so

<B foo=""/> is non empty but
<B xmlns:x="data:,hello"></B> is empty

Ah, good catch David.

Okay, I added namespace::* to the XPath that David provided, to take into account namespaces. Here is the new XPath: empty((node(),@*,namespace::*))

 

Here are the results I got from running my XSLT program using the new XPath:

 

 

Is empty?

<B/>

true

<B></B>

true

<B>&null;</B>

true

<B>  </B>

false

<B><!-- Hello, world --></B>

false

<B><bad/></B>

false

<B>99</B>

false

<B x="10"/>

false

<B xmlns:b="test"/>

false

 

Perfect!

 

Those results are from running SAXON in Oxygen XML.

 

John and David pointed out I might get different results with another parser. Specifically, another parser might discard comments and the whitespace in <B>  </B>. Such a parser would produce these results:



or more likely the same parser, differently configured, for  example if you have xsl:strip-space elements="*" in the xslt, or if you call saxon with -strip option or with a DTD or schema that specifies that B takes element content or....

 

 

 

Is empty?

<B/>

true

<B></B>

true

<B>&null;</B>

true

<B>  </B>

true

<B><!-- Hello, world --></B>

true

<B><bad/></B>

false

<B>99</B>

false

<B x="10"/>

false

<B xmlns:b="test"/>

false

 

Is there any way to write an XPath expression that always produces the results shown in the first table, regardless of which parser is used?


No if a previous part of the pipeline has removed white space then <b> </b> _is_  <b/>

 

 

/Roger

 


David



[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.