[ 
https://issues.apache.org/jira/browse/JXPATH-97?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12514774
 ] 

Sergey Vladimirov commented on JXPATH-97:
-----------------------------------------

Matt,

sorry for the bad patch. But one of the main point is change in DOMNodePointer:

@@ -102,9 +107,12 @@
                 return true;
             }
 
-            if (wildcard
-                || testName.getName()
-                        .equals(DOMNodePointer.getLocalName(node))) {
+            // the same as for attribute ( DOMAttributeIterator::testAttr() )
+            if (equalStrings(nodePrefix, testPrefix)) {
+                return true;
+            }
+
+            if (wildcard || testName.getName().equals(nodeLocalName)) {
                 String nodeNS = DOMNodePointer.getNamespaceURI(node);
                 return equalStrings(namespaceURI, nodeNS);
             }


> Incomplete handling of undefined namespaces
> -------------------------------------------
>
>                 Key: JXPATH-97
>                 URL: https://issues.apache.org/jira/browse/JXPATH-97
>             Project: Commons JXPath
>          Issue Type: Bug
>    Affects Versions: Nightly Builds, 1.2 Final
>            Reporter: Sergey Vladimirov
>             Fix For: 1.3
>
>         Attachments: NamespacesTest.java, patch.txt
>
>
> Mcduffey, Joe <[EMAIL PROTECTED]>
> Can someone tell me how to register namespaces so that attributes with 
> namespaces does not cause the exception
> org.apache.common.ri.model.dom.DOMNodePointer.createAttribute
> unknown namespace prefix: xsi
> For example the following
> <ElementA  A:myAttr="Mytype">
>   <B:ElementB>MY VALUE</B:ElementB>
> </ElementA>
> Would result in the following exception:
> org.apache.common.ri.model.dom.DOMNodePointer.createAttribute
> unknown namespace prefix: A
> FYI: In this example there was a namespace decaration in the file and I also 
> manually called the
> registerNamespace(A,"/http...");
> registerNamespace(B,"/http...");
> There was no problem encountered for elements. Only attributes. Can someone 
> help? Thanks.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to