This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: streaming multiple XML input


there is nothing in native XSLT that allows u to explicitly 'stream' in
content, except for using external methods in the fashion u gave as an
example.

this is something i brought up a long time ago, that at some point we may
want to replace our document() calls with streams.

i think typical use cases would see current file based programming migrate
to using XML repositories or incorporating external real time xml
generators, this introduces some real 'no no's' with respect to functional
programming, if one was thinking of adding a new native function to XSLT
core.

a more 'transactional' based approach would be to use a SOAP service to
bring the data into your application as xml,which once again requires
external functions to actuate the SOAP call ( take a look at www.bayes.co.uk
anyservice clientside example.

this would cause me to once again to suggest the crazy idea that maybe all
XSLT parsers should have client side SOAP ability built in, hmm maybe there
is an EXSLT function in there somewhere.

there are a lot of server side efforts that return a well formed xml
document based on a query string, which of course is not XSLT related, but
does the job using pure http as transport.

cheers, jim





----- Original Message -----
From: "Luc Pionchon" <luc.pionchon@arbonaut.com>
To: <xsl-list@lists.mulberrytech.com>
Cc: "Luc" <luc.pionchon@arbonaut.com>
Sent: Monday, August 20, 2001 8:14 AM
Subject: [xsl] streaming multiple XML input


> hi,
>
> is there anyway to give to a XSLTprocessor several XML entries, except by
> "hardcoding" a file name with "document(xxx.xml)"
> actually, i wanted to avoid using files, but using streams.
> basicaly something like this (~):
>
>    transf.setXSLT("xxx.xsl");
>    transformer.convert(inputStream1, inputStream2, outputStream);
>
>
> luc
>
>
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
>


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]