I've got this problem - I'm using Xwork/Webwork xslt result that basically packages an object model into DOM, then passes it through XSLT. The problem is that for large object models DOM2DTM traverses them all which is usually very inefficient. Is there a way to skip DTM creation in Xalan and maybe to work over DOM model directly? In my case DOM2DTM traverses through thousands of objects, even though my stylesheet is limited only to a few of them. And note that even though the object model is lazy-packaged into DOM for transformation, it has to deal with the whole mesh of object.
-- Mike Mosiewicz
