DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=24979>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=24979 XPathNSResolver doesn't resolve URI prefix ------- Additional Comments From [EMAIL PROTECTED] 2003-11-25 19:54 ------- This looks like a bug in our implementation of the DOM XPath API. You can work around it temporarily by adding attributes to the DOM tree to explicitly declare the namespaces: String xmlnsNamespace = "http://www.w3.org/2000/xmlns/"; Attr a = d.createAttributeNS(xmlnsNamespace, "xmlns:xyz"); a.setValue(namespace); e.setAttributeNodeNS(a);
