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

RE: Setting name attribute of <xsl:attribute>

Subject: RE: Setting name attribute of <xsl:attribute>
From: Jeff Beadle <Jbeadle@xxxxxxxx>
Date: Fri, 10 Oct 2003 10:50:20 -0400
xsl setting an attribute
Hey Darren,

You need to wrap the "attributeName" xsl:with-param select value within
ticks or a string() function call.

What's happening is that the parser is looking for an element within the
given context named Parcel_Sequence_number, and obviously doesn't find one
... so, an empty/null node-list is passed in as the arguement.

Try this:
    <xsl:template match="/ShipmentParcelEvent">
        <xsl:element name="ShipmentParcelEvent">
            <xsl:element name="Parcel">            
                <xsl:call-template name="checkAttributeNotNull">
	       <xsl:with-param name="attributeName" 
 
select="'Parcel_Sequence_number'"/> <!-- Here's the change -->
                   <xsl:with-param name="attributeValue" 
 
select="./Parcel/@Parcel_Sequence_Number"/>
                </xsl:call-template>

                etc etc etc  

            </xsl:element> 
        </xsl:element> 
    </xsl:template> 

HTH,
Jeff

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


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.