|
Subject: Re: [xsl] Transform with Multiple Files From: David Carlisle <davidc@xxxxxxxxx> Date: Thu, 3 Dec 2009 13:18:24 GMT |
> <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 |
|---|
|
| <- Previous | Index | Next -> |
|---|---|---|
| Re: [xsl] Transform with Multiple F, David Carlisle | Thread | RE: [xsl] Transform with Multiple F, Michael Kay |
| Re: [xsl] Transform with Multiple F, Martin Honnen | Date | RE: [xsl] Transform with Multiple F, Ramkumar |
| Month |