Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I saw the following line in an XML file:

xmlns:android="http://schemas.android.com/apk/res/android"

I have also seen xmlns in many other XML files that I've come across.

Can someone please explain what it is?

share|improve this question

7 Answers

up vote 54 down vote accepted

It defines an XML Namespace.

In your example, the Namespace Prefix is "android" and the Namespace URI is "http://schemas.android.com/apk/res/android"

In the document, you see elements like: <android:foo />

Think of the namespace prefix as a variable with a short name alias for the full namespace URI. It is the equivalent of writing <http://schemas.android.com/apk/res/android:foo /> with regards to what it "means" when an XML parser reads the document.

NOTE: You cannot actually use the full namespace URI in place of the namespace prefix in an XML instance document.

Check out this tutorial on namespaces: http://www.sitepoint.com/xml-namespaces-explained/

share|improve this answer
article link is not working anymore. +1 – Nikolay Kuznetsov Feb 26 at 4:58

It means xml namespace.

Basically, every element (or attribute) in xml belongs to a namespace, a way of "qualifying" the name of the element.

Imagine you and I both invent our own xml. You invent xml to describe people, I invent mine to describe cities. Both of us include an element called "name". Yours refers to the person's name, and mine to the city name. (ok - its a little bit contrived)

<person>
    <name>Rob</name>
    <age>37</age>
    <homecity>
        <name>London</name>
        <lat>123.000</lat>
        <long>0.00</long>
    </homecity>
</person>

If our two xmls were combined into a single document, how would we tell the two names apart? As you can see above, there are two name elements, but they both have different meanings.

The answer is that you and I would both assign a namespace to our xml, which we would make unique:

<personxml:person xmlns:personxml="http://www.your.example.com/xml/person" xmlns:cityxml="http://www.my.example.com/xml/cities">
    <personxml:name>Rob</personxml:name>
    <personxml:age>37</personxml:age>
    <cityxml:homecity>
        <cityxml:name>London</cityxml:name>
        <cityxml:lat>123.000</cityxml:lat>
        <cityxml:long>0.00</cityxml:long>
    </cityxml:homecity>
</personxml:person>

Now we've fully qualified our xml, there is no ambiguity as to what each "name" element means. All of the tags that start with "personxml:" are tags belonging to your xml, all the ones that start with cityxml: are mine.

There are a few points to note:

  • If you exclude any namespace declarations, things are considered to be in the null (or default) namespace.
  • If you declare a namespace without the the identifier, i.e. xmlns="http://somenamespace, rather than xmlns:rob="somenamespace", it specifies the default namespace for the document
  • The actual namespace itself, often a url, is of no real consequence. It should be unique, so people tend to chose a url that they own, but it has no greater meaning than that. Sometimes people will place the schema (definition) for the xml at the url specified, but that is a convention of some people only.
  • The prefix is of no consequence either. The only thing that matters is what namespace the prefix is defined as. Several tags beginning with different prefixes, all of which map to the same namespace are considered to be the same.
  • Attributes can be namespaced but are generally not. They also do not inherit their namespace from the element they are on, as opposed to elements (see below)

Also, element namespaces are inherited from the parent element. In other words I could equally have written the above xml as

<person xmlns="http://www.your.example.com/xml/person">
    <name>Rob</name>
    <age>37</age>
    <homecity xmlns="http://www.my.example.com/xml/cities">
        <name>London</name>
        <lat>123.000</lat>
        <long>0.00</long>
    </homecity>
</person>
share|improve this answer
19  
+1 for writing an essay. – Noldorin Jul 25 '09 at 11:48
20  
That kind of answer is what's making this site so good! Having the answer instead of pointing to it is what makes this site better than Google! – Brad Bruce Jul 25 '09 at 15:12
5  
It's pretty redundant in many cases. We don't need to rewrite every single piece of information on the internet. I think some amount of emphasis should be put on googling around just a little bit before some questions are asked. "What rendering engines do today's browsers use?" Is a great example of this, if you type in the browsers name + rendering engine, you get an answer, first hit, for each browser. In quite a few cases it's obvious they're too lazy to read 2-3 paragraphs to get the information they need. They need pre-chewed food like babies. – Sneakyness Jul 26 '09 at 9:45
2  
+1 good, helpful conceptual answer. You may want to qualify "Basically, every element (or attribute) in xml belongs to a namespace", since some elements and attributes are said to be in "no namespace". Though I understand you were giving the basics. – LarsH Aug 18 '11 at 12:05
1  
very nice explanation +1 – Peter Sep 5 '12 at 11:27
show 1 more comment

There is some useful information here: http://www.w3schools.com/XML/xml_namespaces.asp

share|improve this answer

It's the xml namespace

share|improve this answer

You have name spaces so you can have globally unique elements, however 99% of the time this doesn't really matter but when you but it in the perspective of the semantic web it starts to become important. For example you could make an xml mash-up of different schemes just by using the appropriate xmlns for example mash up friend of a friend with Vcard etc.

share|improve this answer

It's called a namespace.

It is explained here:

http://en.wikipedia.org/wiki/XML_namespace

share|improve this answer

It stands for XML Namespace or Via Google

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.