Re: [xsl] Are there any XSLT processors that can incrementally input the XML data?

Subject: Re: [xsl] Are there any XSLT processors that can incrementally input the XML data?
From: Hermann Stamm-Wilbrandt <STAMMW@xxxxxxxxxx>
Date: Wed, 15 Sep 2010 15:20:50 +0200
> Are there any XSLT processors that can incrementally input the XML data?
> That is, the XSLT processor inputs just the number of XML elements
> currently requested by the XSLT program, processes those elements, and
then
> outputs the results? All this is done with little or no in-memory
storage.

There are quite some XSLT processors which can do streaming processing.

DataPower processor does even allow for "partial streaming" which means it
can deal with
more complex transformations than a streaming processor can in a "streaming
like" fashion.
But DataPower XSLT processor is only available as an appliance, not as pure
software.

"DataPower XML data processing":
http://www-01.ibm.com/support/docview.wss?uid=swg27019118&aid=1#page=7


Mit besten Gruessen / Best wishes,

Hermann Stamm-Wilbrandt
Developer, XML Compiler, L3
Fixpack team lead
WebSphere DataPower SOA Appliances
----------------------------------------------------------------------
IBM Deutschland Research & Development GmbH
Vorsitzender des Aufsichtsrats: Martin Jetter
Geschaeftsfuehrung: Dirk Wittkopp
Sitz der Gesellschaft: Boeblingen
Registergericht: Amtsgericht Stuttgart, HRB 243294


From:       "Costello, Roger L." <costello@xxxxxxxxx>
To:         "xsl-list@xxxxxxxxxxxxxxxxxxxxxx"
            <xsl-list@xxxxxxxxxxxxxxxxxxxxxx>
Date:       09/15/2010 03:08 PM
Subject:    [xsl] Are there any XSLT processors that can incrementally
            input the XML data?



Hi Folks,

I have a simple but large XML document containing almost 100 million bank
withdrawals/deposits:

<transactions>
    <withdrawal>30</withdrawal>
    <deposit>40</deposit>
    <deposit>50</deposit>
    <withdrawal>20</withdrawal>
    <withdrawal>45</withdrawal>
    <deposit>80</deposit>
   ...
</transactions>

I want my XSLT program to start at the first transaction:

    <withdrawal>30</withdrawal>

and then sequentially process the following siblings.

I want the <withdrawal> and <deposit> elements to be input on demand.

Are there any XSLT processors that can incrementally input the XML data?
That is, the XSLT processor inputs just the number of XML elements
currently requested by the XSLT program, processes those elements, and then
outputs the results? All this is done with little or no in-memory storage.

/Roger

Current Thread