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 does "xmlns" in XML mean?

I saw the following line in an XML file: xmlns:android="http://schemas.android.com/apk/res/android" I have …

xml xml-namespaces
Parsing XML with namespace in Python via 'ElementTree'

I have the following XML which I want to parse using Python's ElementTree: <rdf:RDF xml:base="http://dbpedia.…

python xml xml-parsing xml-namespaces elementtree
cvc-elt.1: Cannot find the declaration of element 'MyElement'

I'm trying to validate a really simple xml using xsd, but for some reason I get this error. I'll really …

xsd xml-namespaces xml-validation xml-error
How to serialize an object to XML without getting xmlns="..."?

Is there a way for me to serialize an object in .NET without the XML Namespaces automatically serializing also? It …

.net xml-serialization xml-namespaces
What does elementFormDefault do in XSD?

What does elementFormDefault do, and when should it be used? So I found some definitions for elementFormDefault values: qualified - …

xml xsd xml-namespaces xsd-validation xml-validation
how to ignore namespaces with XPath

My goal is to extract certain nodes from multiple xml files with multiple namespaces using XPath. Everything works fine as …

xml xpath namespaces xml-namespaces
How to query XML using namespaces in Java with XPath?

When my XML looks like this (no xmlns) then I can easly query it with XPath like /workbook/sheets/sheet[1] &…

java xml xpath xml-namespaces
How to ignore namespace when selecting XML nodes with XPath

I have to parse an XML document that looks like this: <?xml version="1.0" encoding="UTF-8" ?> <m:OASISReport …

xml xpath namespaces xml-namespaces
Xml Namespace breaking my xpath!

I have the following XML: <List xmlns="http://schemas.microsoft.com/sharepoint/soap/"> <Fields> <Field&…

xml xpath xml-namespaces