Why XPath does not work with xmlns attribute
That is because you are in a default namespace xmlns="http://www.ksharma.in/myXSD"
. You can try
/*[local-name()='configuration']/*[local-name()='properties']
instead.
Namespace wihtout prefix is a default namespace. Having default namespace, XML element where the namespace is declared and it's descendants without prefix and without different non-prefixed namespace declaration considered in the same namespace.
The second XML above has namespace declaration with prefix. In this case, for an element to be considered in that prefixed-namespace it has to be declared explicitly using corresponding prefix.
To be able to access elements in default namespace you have to declare a prefix that point to default namespace URI and use that prefix in your XPath query (or ignore the namespace by using local-name()
as suggested in @Joel's answer).
Placing xmlns="http://www.ksharma.in/myXSD"
on the root element of your XML puts the root and its descendants in the http://www.ksharma.in/myXSD
namespace. This effectively means that all of the element names in your XML document are preceded by http://www.ksharma.in/myXSD
. Yet, the elements stated in your XPath are not in the http://www.ksharma.in/myXSD
namespace. Thus, your XPath matches nothing.
Placing xmlns:conf="http://www.ksharma.in/myXSD"
instead on the root element merely defines a prefix for the http://www.ksharma.in/myXSD
namespace but doesn't actually use it. The root element and its descendants remain in no namespace and are therefore able to be found by your XPath that also tests in no namespace. Thus, your XPath matches something.
See also How does XPath deal with XML namespaces?