Wrox Programmer Forums
Go Back   Wrox Programmer Forums > XML > XSLT
|
XSLT General questions and answers about XSLT. For issues strictly specific to the book XSLT 1.1 Programmers Reference, please post to that forum instead.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the XSLT section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old September 22nd, 2007, 12:39 AM
Registered User
 
Join Date: Jan 2006
Posts: 9
Thanks: 0
Thanked 0 Times in 0 Posts
Default importing XML file in to xslt

<?xml version="1.0" encoding="UTF-8"?>
<Descriptions>
<Bugdetails category="MALICIOUS_CODE">
<Bug abbrev="MS">
<ShortDescription>Creates an empty jar file entry (AM_CREATES_EMPTY_JAR_FILE_ENTRY)</ShortDescription>
<LongDescription>
The code calls putNextEntry(), immediately followed by a call to closeEntry(). This results in an empty JarFile entry. The contents of the entry should be written to the JarFile between the calls to putNextEntry() and closeEntry().

</LongDescription>
</Bug>
</Bugdetails>

</Descriptions>


Above is my sample ref.xml doc.
there can be multiple <Bugdetails> elements and multiple <bug>with in each <Bugdetails>.

Now I want to use this ref.xml into my xslt for the bug Descriptions on the basis of abbrev code.
So i want ot import this xml doc into my xslt file and get the bug details in my xslt(test.xsl).


My seneario is

My test.xsl will be applies to another xml doc and fetch bug category and abbrev .then on the basis on those 2 values , will fetch corresponding bug details form this ref.xml file.


any idea is appreciated

 
Old September 22nd, 2007, 02:25 AM
mhkay's Avatar
Wrox Author
 
Join Date: Apr 2004
Posts: 4,962
Thanks: 0
Thanked 292 Times in 287 Posts
Default

To load the XML file, use

<xsl:variable name="bugs" select="document('ref.xml')"/>

assuming the file is in the same directory as your stylesheet.

To select the bugs with a given category and abbreviation, use

select="$bugs/Descriptions/Bugdetails[@category=$category and Bug/@abbrev=$abbrev]"

If the file is very large you can make this search more efficient by using keys (though if you use Saxon-SA it will be optimized for you automatically).

Michael Kay
http://www.saxonica.com/
Author, XSLT Programmer's Reference and XPath 2.0 Programmer's Reference
 
Old September 22nd, 2007, 11:15 PM
Registered User
 
Join Date: Jan 2006
Posts: 9
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Thanks Michael..
it really works..







Similar Threads
Thread Thread Starter Forum Replies Last Post
Modifiying XML File using XSLT brianlan XSLT 1 October 2nd, 2007 03:14 PM
XSLT transformation from XML buffer and XSL file sundaramkumar Javascript 1 September 5th, 2005 02:11 AM
translate xml using xslt in a batch file? hhali XSLT 3 May 8th, 2005 12:48 PM
merge two xml file and make new xml using xslt ketan XSLT 0 September 21st, 2004 08:48 AM
Merge XML files into a xml file using xslt lxu XML 4 November 6th, 2003 06:01 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.