Bug #4689
closedIllegalStateException when getting XdmNode after chaining transformation
100%
Description
After updating the version of the nuget package Saxon-HE from 9.7.0.8 to 9.9.1.7 a chained transformation stopped working.
The code looks like this:
var t1 = e1.Load();
var t2 = e2.Load();
var t3 = e3.Load();
var dest = new XdmDestination();
t1.InitialContextNode = doc;
t2.Destination = t3;
t3.Destination = dest;
t1.Run(t2);
dest.XdmNode // throws java.lang.IllegalStateException: The document has not yet been built
Updated by Martin Honnen over 4 years ago
On the Java side of Saxon 9.9.1.7 your approach seems to work, with .NET I only get the chaining of three Xslt30Transformer
s (instead of XsltTransformer
s) to work:
var t1 = e1.Load30();
var t2 = e2.Load30();
var t3 = e3.Load30();
t1.GlobalContextItem = doc;
t1.ApplyTemplates(doc, t2.AsDocumentDestination(t3.AsDocumentDestination(dest)));
Updated by O'Neil Delpratt about 4 years ago
- Status changed from New to In Progress
- Applies to branch 10, 9.9, trunk added
Sorry for the delay in picking this bug issue up. I have managed to reproduce the problem with the code snippet above.
In 9.9 when we added the Xslt30Transformer class, which involved some code refactoring. It seems the code to for create the internal Documentbuilder
in the XdmDestination class seems to have been broken.
Updated by O'Neil Delpratt about 4 years ago
- Status changed from In Progress to Resolved
- % Done changed from 0 to 100
- Fix Committed on Branch 10, 9.9, trunk added
Bug fixed in the XsltTransformer class where we now set the destination on the internal Java transformer class.
Updated by O'Neil Delpratt about 4 years ago
- Fixed in Maintenance Release 9.9.1.8 added
Bug fix applied on the Saxon 9.9.1.8 maintenance release. Leaving open until applied on the Saxon 10 maintenance release.
Updated by O'Neil Delpratt about 4 years ago
Bug fix applied in the Saxon 10.3 maintenance release
Updated by O'Neil Delpratt about 4 years ago
- Status changed from Resolved to Closed
- Fixed in Maintenance Release 10.3 added
Please register to edit this issue