On Tuesday, 11/27/2001 at 09:04 CET, Christian Geuer-Pollmann > When I start all my unit tests I get many (8) exceptions that all relate to > the same problem. What I do generally is to register a new XPath function > (the here() function as defined in XML Signature) and then I apply some > XPathes using that function.
How complicated is that function? If it's short, pass it along and we can do a quick check to see if it's doing anything unreasonable... > java.lang.RuntimeException: Could not resolve the node to a handle Generally what that means is that you've passed us a DOM node which is _not_ part of our DTM model -- or which is not registered into this particular DTM manager -- at a place where we expected the node to be one of ours. You can think of it as a type-cast failure, though it's actually implemented as a table lookup. So the question is where this node came from, what you're asking us to do with it, and whether that operation actually makes sense or not.
