Re: Bug in org.apache.xindice.core.xupdate.XObjectImpl

2003-11-13 Thread David Kensche
Terry Rosenbaum wrote: Hi again, or String xpath = "//[EMAIL PROTECTED]>='...']"; Sorry, i copy-pasted. The code says: String xpath = "//revision[url='...']"; But this doesn't work, too, although the example works. This is my code: // Get the collection to use, with the given configuration

Re: Bug in org.apache.xindice.core.xupdate.XObjectImpl

2003-11-13 Thread Terry Rosenbaum
See below... David Kensche wrote: Hi, I found a bug. In org.apache.xindice.core.xupdate.XObjectImpl line 105 says: return (NodeList) _xobj.nodeset(); which causes a ClassCastException. This fixes: return _xobj.nodelist(); The Xalan API changed. Use early-model Xalan version with early model Xin