> Why can't people just make them simpler? Like Java packages?
>
> <Urmel xmlns="de.milu.ns.eins"/>
> <mv:bla xmlns:mv="com.myvocabulary.mynamespace"/>
Two things that stand out for me to make them simpler:
- dont allow changing the default namespace (so no xmlns=""). An
unprefixed element is always in no namespace.
- I would allow the use of the namespace directly, eg
<com.mycomp:elem> instead of forcing the definition of a prefix
<m:elem xmlns="com.mycomp">
--
Andrew Welch
http://andrewjwelch.com
Kernow: http://kernowforsaxon.sf.net/