xsl-list
[Top] [All Lists]

Re: Outputting from more than one source

2002-10-12 17:22:32
As a xslt newbie, I must ask the question: instead of
the java code producing multiple xml files, why not
produce one xml and let xslt sort and produce the
multiple output files? something about xsl:redirect? 

--- Gustavo Moreira <moreirag(_at_)ieg(_dot_)com(_dot_)br> wrote:
Thanks,
The document() function worked fine.
But I still have to sort them. The clients.



----- Original Message -----
From: "J.Pietschmann" <j3322ptm(_at_)yahoo(_dot_)de>
To: <xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com>
Sent: Saturday, October 12, 2002 4:18 PM
Subject: Re: [xsl] Outputting from more than one
source


Gustavo Moreira wrote:
I wrote a java code that generates XML files
with the same stucture from
different databases.

Which would be the best way to show the
information from these files
together?

Use the document() function:
  http://www.w3.org/TR/xslt#document
You can copy, apply templates, or whatever you
want:
  <xsl:copy-of select="document('other.xml')/*"/>
  <xsl:apply-templates
select="document('other.xml')/*"/>

If you generate the XML on the fly, check your
favorite XSLT processor whether it allows you
to hook in functionality to map URIs to some XML
source. For Java processors, write an URIResolver.


J.Pietschmann


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



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



=====


__________________________________________________
Do you Yahoo!?
Faith Hill - Exclusive Performances, Videos & More
http://faith.yahoo.com

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



<Prev in Thread] Current Thread [Next in Thread>