Re: XML Namespaces

2003-02-11 Thread Colin Goodier
Go to www.xml.com and type 'namespaces' in the searchbox. Lots of stuff there. Colin On Tue, 2003-02-11 at 14:48, Eddie Roosenmaallen wrote: Hi all! From reading the documentation on AxKit and XSP, it seems that XML namespaces are a must for making full use of AxKit. Problem is, I've been

Re: XML Namespaces

2003-02-11 Thread Robin Berjon
Eddie Roosenmaallen wrote: From reading the documentation on AxKit and XSP, it seems that XML namespaces are a must for making full use of AxKit. Yes, in fact they are a must for anything XML. Imho the fact that namespace-less XML is even possible is a bug, as I have yet to find one single

Re: XML Namespaces

2003-02-11 Thread Tod Harter
The concept is pretty simple. Anywhere in a document you can declare a namespace. The syntax is like an attribute declaration, that is it occurs inside a tag, so it looks something like: myprefix:mytag xmlns:myprefix=whateveruristringidentifiesthis/ In the above example you just put mytag into

Re: XML Namespaces

2003-02-11 Thread Kip Hampton
Eddie Roosenmaallen wrote: Can anyone point me to a good tutorial on using and writing XML namespaces, or at least give me a quick run-down on how they are built, and the internal structure (if any) of a namespace? Zvon.org has a nice XML Namespaces intro [1] with links to more info. HTH,