On Fri, 9 Nov 2001, Richard Han wrote:

> We are working data import for Scarab open source project, it is
> very appealing for us to use Jaxen. we would like to ask a question:
> does Jaxen require every elements in memory?
> we think this is important because we don't want to make the assumption
> about the size of the xml file exported or transformed from other bug
> tracking system)

Jaxen requires that something implements the Navigator interface.

Currently, we have implementation of Navigator that lay on top of W3C DOM,
JDOM, dom4j, and EXML.  All of those are whole-doc-in-memory models.

Jaxen does not have a SAX interface, or anything like that.

You are free to implement (if possible; I have my doubts) to write an
implementation of Navigator which somehow can provide the InfoSet 
requirements without having to have the whole document in memory.

        -bob


_______________________________________________
Jaxen-interest mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jaxen-interest

Reply via email to