1
vote
3answers
309 views

Setting current node for XPath evaluation

Given a node list and a current node within that list, is there a way to use javax.xml.xpath (or org.apache.xpath perhaps) to evaluate position dependent XPath expressions, for example: ...
0
votes
1answer
206 views

Is there a way of binding a Java object in JAXP or Xalan XSLT scope?

Xalan-J lets us create and manipulate java objects using it's extension mechanism. What I want to do is to pass an already created object from Java (from the JVM that invokes Xalan) and then ...
5
votes
3answers
329 views

JAXP XSLT document() function problem

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 ...