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

Re: SAX2 NS processing (was Re: Namespace question)

  • From: james anderson <James.Anderson@m...>
  • To: David Megginson <david@m...>
  • Date: Fri, 07 Jan 2000 16:05:14 +0100

Re: SAX2 NS processing (was Re: Namespace question)
The following is true only of application which don't live very long. For
example, for processes which correspond to a single selfcontained document
only. Where the processes live longer and continue to process additional
documents over their life span, that second little 
   || att.uri == ""
clause is going to make thier lives, and their coding, unnecessarily complicated.

In contrast with either of the illustrated clauses, i would expect a
standardized xml interface to support coding of the following sort.

 static QName symFoo = sax?.??.intern("http://www.foo.com/ns/", "foo");
 static QName symBar = sax?.??.intern("http://www.foo.com/ns/", "bar");
 >   for each att in atts do
>    
>       if att == symFoo
>         doFoo(att.value)
>       else if att == symBar
>         doBar(att.value)
>       end
>   end

Anything else is looking for problems.
Yes, one could code this over a SAX which follows "option #2".
Why should each application, or application library, need to? Where's the benefit?

David Megginson wrote:
> 
> "Simon St.Laurent" <simonstl@s...> writes:
> 
> > Will SAX2 namespace processing take this 'real-world' approach (which I
> > totally support), or are there going to be options for this?
> >
> > It sounded earlier like you expect namespace processing to be the domain of
> > the parser, not the application, so it seems like a live issue.
> 
> Basically, the difference in pseudo code is this:
> 
>   for each att in atts do
>     if att.uri == "http://www.foo.com/ns/" || att.uri == ""
>       if att.local == "foo"
>         doFoo(att.value)
>       else if att.local == "bar"
>         doBar(att.value)
>       end
>     end
>   end
> 
> vs. this:
> 
>   for each att in atts do
>     if att.uri == "http://www.foo.com/ns/"
>       if att.local == "foo"
>         doFoo(att.value)
>       else if att.local == "bar"
>         doBar(att.value)
>       end
>     end
>   end
> 
> In other words, there's not a very significant difference between the
> two.  The main problem is that the spec is just so much harder to read
> and understand that it had to be.
>


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



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.