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

Re: Transform with Multiple Files

Subject: Re: Transform with Multiple Files
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 3 Dec 2009 13:18:24 GMT
Re:  Transform with Multiple Files
> <xsl:value-of select="document('comments.xml')/comment/p"/>.

> Please correct me if I did any mistakes in the above my code.

hard to guess given zero information but some guesses.

value-of gives the string value of a node which is often not what you
what to do for an entire paragraph, perhaps you meant

<xsl:copy-of select="document('comments.xml')/comment/p"/>.

or

<xsl:apply-templates select="document('comments.xml')/comment/p"/>.

or perhaps document('comments.xml')/comment/p does not select what you
want, in which case one of the steps is wrong so:


perhaps

document('comments.xml') does not select anything as the relative URI
comments.xml resolved against the base uri of the stylesheet does not
correspond to a well formed xml document.

or

document('comments.xml')/comment does not select anything because the top
level element of comments.xml is not <comment> in no-namespace (or the
namespace specified as the default xpath namespace in the code you
didn't show)



or

document('comments.xml')/comment/p  does not select anything as the top
level comment element has no p children.

David

________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs. 
________________________________________________________________________

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.