Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
Version 2.6
-
None
Description
the Cursor getAllNamespaces API is not returning the default namespace that is in scope for an element.
In org.apache.xmlbeans.impl.store.Locale class, line 2316 is this code, which intentionally omits the default namespace from the mapping.
// Here I check to see if there is a default namespace
// mapping which is not empty on a non root container which
// is in a namespace. This this case, I do not want to add
// this mapping because it could not be persisted out this
// way.
if (prefix.length() == 0 && uri.length() > 0 &&
cName != null &&
cName.getNamespaceURI().length() > 0)
from SVN history, it was added in r110897
http://svn.apache.org/viewvc/xmlbeans/trunk/src/store/org/apache/xmlbeans/impl/store/Locale.java?revision=110897&view=markup&pathrev=1386853
As an example, given
<a xmln=""><b xmlns="namespaceb"><c xmlns:c1="namespacec"/></b></a>
Using Cursor API, navigate to element c then call getAllNamespaces, it returns
"",""
c1,"namespacec"
which is incorrect, since the default namespace was redeclared in element b, the correct return should be
"","namespaceb"
c1,"namespacec"
The proposed fix is to comment out that "if" block. I have tested that fix to pass checkintest.