Top "Xml-namespaces" questions

According to the standard, "XML namespaces provide a simple method for qualifying element and attribute names used in Extensible Markup Language documents by associating them with namespaces identified by URI references.

What is the 'app' Android XML namespace?

Here is an example of the app namespace that I've seen from a res/menu/main.xml file <menu …

android xml android-layout xml-namespaces android-tools-namespace
What is an xs:NCName type and when should it be used?

I ran one of my xml files through a schema generator and everything generated was what was expected, with the …

xml xsd xml-namespaces
targetNamespace and xmlns without prefix, what is the difference?

In an xml schema document, if I have both the targetNamespace and the xmlns without a prefix. <xsd:schema …

xml xsd schema xml-namespaces prefix
How to prevent blank xmlns attributes in output from .NET's XmlDocument?

When generating XML from XmlDocument in .NET, a blank xmlns attribute appears the first time an element without an associated …

c# .net xml xml-namespaces xmldocument
XPath select node with namespace

Its a .vbproj and looks like this <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <…

xml vb.net xpath xml-namespaces
How to remove namespaces from XML using XSLT

I have a 150 MB (it can go even more sometimes) XML file. I need to remove all the namespaces. It's …

xml xslt xml-namespaces
How do I remove namespaces from xml, using java dom?

I have the following code DocumentBuilderFactory dbFactory_ = DocumentBuilderFactory.newInstance(); Document doc_; DocumentBuilder dBuilder = dbFactory_.newDocumentBuilder(); StringReader reader = new StringReader(s); …

java xml dom domdocument xml-namespaces
HTML: What is `xmlns:fb="http://www.facebook.com/2008/fbml"`?

What is xmlns:fb="http://www.facebook.com/2008/fbml"? I've been seeing it in a lot of <html> …

html facebook xml-namespaces fbml
Open Graph namespace declaration: HTML with XMLNS or head prefix?

I have seen conflicting information on how to best implement Open Graph namespaces. Specifically, the Open Graph website uses a …

facebook facebook-opengraph xml-namespaces
Is xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" a special case in XML?

When we use a namespace, we should also indicate where its associated XSD is located at, as can be seen …

xml xsd xml-namespaces