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=5532>. 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=5532 underscore is wrong [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[EMAIL PROTECTED] | |.br Severity|Normal |Critical OS/Version|Windows NT/2K |Linux Priority|Other |High Platform|Other |PC Version|3.3 Final |3.2.3 Final ------- Additional Comments From [EMAIL PROTECTED] 2001-12-28 06:47 ------- i have an application work with tomcat 3.2.3 + JBoss and want tu use 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. Follow 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 your help, thank´s. Alessandro Salvado. -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>