[xsl] Xsl question (embedding an xml in another xml)

Subject: [xsl] Xsl question (embedding an xml in another xml)
From: <babu.eshwaramoorthy@xxxxxxxxx>
Date: Tue, 30 Nov 2004 11:54:39 +0530
Hi All,

In one xslt file, is it possible to do the following transfomation

Input (Details.xml)
------------------

<?xml version="1.0"?>
<Details>
<name>aaa</name>
<age>26</age>
</Details>

If age 26 add 10 with age

TransfomedOutput (Person.xml)
----------------
<?xml version=3D3D"1.0"?>
<Person>
<PersonDetails>
        <?xml version=3D3D"1.0"?>
         <Details>
         <name>aaa</name>
         <age>36</age>
         </Details>
<PersonDetails>
</Person>

(1) I want to manupulate some elements of Input.xml and then
(2)Include the complete contents of Details.xml into <PersonDetails>
element of Person.xml

I want to do this in one xslt file. Is it possible? Can you give me some
tips to implement the above.

Thaks in advance,
Babu


Confidentiality Notice

The information contained in this electronic message and any attachments to
this message are intended
for the exclusive use of the addressee(s) and may contain confidential or
privileged information. If
you are not the intended recipient, please notify the sender at Wipro or
Mailadmin@xxxxxxxxx immediately
and destroy all copies of this message and any attachments.

Current Thread