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=5656>. 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=5656 XPathAPI error on Jaxp implementation Summary: XPathAPI error on Jaxp implementation Product: Xerces2-J Version: 2.0.0 [alpha] Platform: PC OS/Version: Linux Status: NEW Severity: Normal Priority: Other Component: JAXP AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] CC: [EMAIL PROTECTED] i have an application work with XPathAPI to get a node value and i receive the msg : Root cause: java.lang.NoSuchMethodError at org.apache.xpath.axes.AxesWalker.getNextNode(AxesWalker.java:1051) at org.apache.xpath.axes.AxesWalker.nextNode(AxesWalker.java:1137) (...) and verify my jar library and have such method. The error ocurre on line 1051. Following the src above. protected Node getNextNode() { if (m_isFresh) m_isFresh = false; Node current = this.getCurrentNode(); #line 1051 -> if (current.isSupported(FEATURE_NODETESTFILTER, "1.0")) ((NodeTestFilter) current).setNodeTest(this); Node next = this.firstChild(); while (null == next) { next = this.nextSibling(); if (null == next) { Node p = this.parentNode(); if (null == p) break; } } if (null == next) this.m_isDone = true; return next; } I like help Alessandro Salvado. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
