I'm having trouble parsing an XML file with XML::LibXML when there is a default namespace:
<Mynode xmlns="http://somewhere/dot/com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://somewhere2/dot/com/myfile.xsd">
....
</Mynode>
If I add a namespace prefix it parses fine:
<n:Mynode xmlns:n="http://somewhere/dot/com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://somewhere2/dot/com/myfile.xsd">
....
</n:Mynode>
(10)
]
