Subject: Create several XML files
From: Beatriz Langiano <bialangiano@xxxxxxxxxxxx>
Date: Mon, 22 Nov 2004 11:20:44 -0300 (ART)
|
Hi,
I have a xml file (Response.xml) and it has several
xml documents into it, like this:
----------------------Response.xml---------------------
<?xml version="1.0" encoding="UTF-8"?>
<record>
... document 1
</record>
<?xml version="1.0" encoding="UTF-8"?>
<record>
... document 2
</record>
------------------------------------------------------
I'll use a xsl stylesheet to transform each document
(1 and 2) in another xml document, and, I want that
each xml document that was transformed be a separeted
file, like this:
----------------------document1.xml---------------------
<?xml version="1.0" encoding="UTF-8"?>
<record>
...
</record>
----------------------document2.xml---------------------
<?xml version="1.0" encoding="UTF-8"?>
<record>
...
</record>
How could I do this in xsl?
Is there a element/function xsl that I can use to do
this?
Thanks, Beatriz
=====
Beatriz Langiano
Mestrado em Informatica
Universidade Federal do Parana - Brasil
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
|