SAX2: Namespace proposal

Hill, Les lhill at excelergy.com
Mon Dec 20 21:09:14 GMT 1999


David Megginson writes:
> The main choice, then, is between the following (imagine that 
> "foo" is 
> a full URI):
> 
>   startNamespace("foo")
>   startElement("bar", atts)
>   character("Hello, world!")
>   endElement("bar")
>   endNamespace("foo")
> 
> and
> 
>   startElement("foo", "bar", atts)
>   characters("Hello, world!")
>   endElement("foo", "bar")

How could the first work without the expanded signature of the second?
Imagine the following:

<f:bar xmlns:f="foo" xmlns:b="baz" b:y="z">
</f:bar>

resulting in:

	startNamespace("foo")
	startNamespace("baz")
	startElement("bar", atts)

which namespace is "bar" in?

Where is the "efficiency" in the second without the explicit namespace
events?  Imagine the following:

<f:bar xmlns:f="foo" xmlns:b="baz" b:y="z">
	<f:moo b:x="z">
	</f:moo>
</f:bar>

resulting in:

	startElement("foo", "bar", atts) <== must parse and remember the
namespaces
	startElement("baz", "moo", atts) <== refer to above

note that the parsing and storing of the namespaces is ADDED work as the
parser must have already done so itself!

Perhaps the two should be combined...

Regards,

Les Hill
Senior Architect
Excelergy

=======================================================
Excelergy is hiring Java/C++ XML developers, all levels
   send resume (and mention me :) to jobs at excelergy.com
=======================================================

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





More information about the Xml-dev mailing list