Hi,
I’m using SAXOutputter.outputFragment to send an
Element without start/endDocument() but I always get an access violation on the
first line of elementContent() (line 1090). This is because
elementContent calls locator.setNode() and locator is null because
outputFragment() does not call documentLocator(). Because
documentLocator()’s comment says this is deliberate, I changed it to
check for locator != null. This also occurs in element(Element element,
NamespaceStack namespaces) line 900 where the same fix needs to be applied.
John.