I am working under java application which uses XSLT transformation. I have a lot of document() calls in it, so it is possible to have java.lang.OutOfMemory exception (which I actually have), because after each call of document() function the document is cached.
At http://xml.apache.org/xalan-j/faq.html#faq-N102F9 I read that it is possible to increase heap memory size which is not the solution in my case. I also tried to use incremental transform which seems to be not supported.
So, is there any possibility to turn off document caching in jaxp while working with document() function?
