[EMAIL PROTECTED] wrote:
Alberto Massari wrote:
Check if the destructor for this object is being called after
XMLPlatformUtils::Terminate has already been called.
Alberto
Alberto: Thanks for the quick response. No, I am not invoking
XMLPlatformUtils::Terminate in the class at all.
Did you delete the DOMDocument returned by getDocument()? In this case
the parser is attempting to delete it again - either avoid deleting the
DOMDocument, or use adoptDocument() to let the parser know that you are
taking care of cleaning up.
Alberto