[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Replacing values in one xml file from another xml

Subject: Re: Replacing values in one xml file from another xml file
From: Abel Braaksma <abel.online@xxxxxxxxx>
Date: Thu, 27 Dec 2007 13:15:05 +0100
Re:  Replacing values in one xml file from another xml
Mujahid - E - Azam wrote:
*****************2****************

<?xml version="1.0" encoding="UTF-8"?>
<chapter>
<p id="p1">text</p>
</chapter>

*********end of 2****************

If you see the 1 st xml file

At the node wikimedia\ projects\ project\ editions\ edition
language="English" in the place of p1. I should get value from the second
xml file ----- chapter\<p id="p1"> "text".

When I run an xslt and get the data from 1st xml in the place of p1. I
should get text displayed..
I mean it should be linked to the chapter\<p id="p1"> "text". Field of
source.xml..
please let me know how to do this.....

You can load any other xml document during you process by using the document() function (in XSLT 2.0 you can also use doc() and doc-available() etc). The result of document() points to the document node. So, to get you "text" text, you can do something like this, regardless what place of execution you are:


document("second-document.xml")/chapter/p[id='p1']

which will return "text" in your case. Because it is not relative to the wikimedia/projects etc node, you do not have to "link" it in anyway (but I am not sure what you mean with "linking").

HTH,

Cheers,
-- Abel Braaksma

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.