Title: RE: reading xml from pipeline into a flow script

One simple way of accomplishing this is to simply, define pipeline to generate, transform, and serialize the xml.  Then, in the flowscript, simply use the jaxp dom api to load the generated xml:

flow() {
        var document = Packages.javax.xml.parsers.DocumentBuilderFactory.newInstance().newDocumentBuilder().build(http://uri-to-xml-file);

        ...

        document.getDocumentElement();
        // it is now a dom
}


-----Original Message-----
From: Simon Price [mailto:[EMAIL PROTECTED]]
Sent: Saturday, June 28, 2003 3:25 PM
To: [EMAIL PROTECTED]
Subject: reading xml from pipeline into a flow script

 From within a flow script, I would like to read (or pass in) xml
generated by a series of pipeline xslt transformations.

Please could someone give me a pointer on how to do this?

Cheers

Simon

-------------------------------------------------------------------
Simon Price
Institute for Learning and Research Technology
University of Bristol
8-10 Berkeley Square
Bristol BS8 1HH
United Kingdom

Direct: +44 (0)7071 226 720
Office: +44 (0)117 928 7193
Fax: +44 (0)117 928 7112
[EMAIL PROTECTED]
http://www.ilrt.bristol.ac.uk


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to