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

Re: How to declare a param which name is in a XML file?

  • From: Daniel Barclay <Daniel.Barclay@d...>
  • To: José Manuel Beas <jmbeas@t...>
  • Date: Tue, 31 Oct 2000 15:17:49 -0500

declare parameter
José Manuel Beas wrote:
> 
> I have a XML file with a parameter definition zone.
> 
> <parameters>
>   <param ident="param1">
>   <param ident="param2">
> </parameters>
> 
> And i want to apply a XSLT file to this XML file
> 
> XSLT File
> 
>         <xsl:template match="parameters">
>                 <xsl:for-each select="param">
>                         <xsl:param name="@ident"/>
>                 </xsl:for-each>
>         </xsl:template>
> 
> But when XSLT-parser(SAXON) processes it, shows this error:
> 
>         "Name @ident contains invalid characters"
> 
> How should i solve this problem??

The name attribute of xsl:param must be a QName (see
http://www.w3.org/TR/xslt#element-param ); specifically, the 
parameter name must be given literally in the XSLT source, and can't 
be specified with an expression.

I'm pretty sure there's no way to define XSLT parameters or variables 
whose names are defined in the XML source document (the file being 
transformed).

If you're going to provide parameter values in an XML file, you can 
probably create one XSLT parameter or variable whose value is a nodeset 
that is the content (children) of the "parameters" element (something 
like <xsl:variable name="params" select=".../param" />), and then can 
extract specific values with something like $var[@ident="param1"].

If you really want to map your given XML to XSLT parameters, I think
you'd have to transform the given XML into an XSLT stylesheet with
a second XSLT stylesheet.


Daniel
-- 
Daniel Barclay
Digital Focus
Daniel.Barclay@d...

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
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

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.