> we are trying to append a node of one docuemnt object to another
> document object. we tried to use importNode method, whcih is giving us
> following run time error:
> java.lang.NoSuchMethodError: org.w3c.dom.Node: method
> getLocalName()Ljava/lang/String; not found
When Xerces imports a node, it first asks the source DOM whether or not is
is DOM2 compliant or not; the result that you're seeing is a DOM that claims
it is DOM2 but is actually not... (because it doesn't fully support
namespaces). This is not uncommon with the DOM implementations shipped
inside of XML-related products. (I've seen DOMs that report "true" when
asked if they support bogus features like "foobar"...).
So, you may have classpath issues with the org.w3c.dom classes.
-- Paul
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]