I'm using Xalan-C++ to do an XSLT transformation and I'm getting a segmentation fault in this code:
XalanTransformer evalTransformer;
evalTransformer.setUseValidation(false);
evalTransformer.transform(*(xmlDoc.getDocumentBuilder()), rule_, resultStream);
Previously, I use this code to initialise a XalanDocumentBuilder:
// Create a XalanTransformer.
XalanTransformer theXalanTransformer;
// Get a document builder from the transformer...
docBuilder_ = theXalanTransformer.createDocumentBuilder();
and then create an XML document with docBuilder_, so xmlDoc.getDocumentBuilder() (which just returns docBuilder_) should return a valid pointer.
If I attach gdb to the running process this is the first few lines of the stack trace:
#0 0x0a2de894 in ?? ()
#1 0x0514f8d9 in amxalanc_1_6::XalanTransformer::doTransform () from /usr/lib/libamxalanc1_6.so
The transform() method was working with a simple output stream, but when I changed the 1st parameter it now fails. I've use the document builder object to successfully create an XML document. Any ideas why I would be getting a segmentation fault within the Xalan code?
xmlDoc.getDocumentBuilder()pointing to valid memory? – chris Oct 3 '12 at 5:12