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

Re: More on my problem with namespaces

Subject: Re: More on my problem with namespaces
From: Martin Honnen <Martin.Honnen@xxxxxx>
Date: Tue, 09 Nov 2010 17:37:59 +0100
Re:  More on my problem with namespaces
Martin Honnen wrote:

I am not sure you will achieve your aim of having the namespace declared on each calypso:value element but fix the other problem first.

As for your stated output, the following achieves that:


<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
   xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
   xmlns:calypso="http://www.calypso.com/xml"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   version="2.0">

<xsl:output method="xml" indent="yes"/>

   <xsl:template match="/">
       <bonds>
           <xsl:for-each select="//isin">
           <bond>
               <calypso:secCode>
                   <calypso:name>ISIN</calypso:name>
                   <calypso:value
                     xmlns:ns3="http://www.w3.org/2001/XMLSchema"
                     xsi:type="ns3:string">
                       <xsl:value-of select="."/>
                   </calypso:value>
               </calypso:secCode>
           </bond>
       </xsl:for-each>
       </bonds>
   </xsl:template>
</xsl:stylesheet>

Of course the above is only necessary if you want the xmlns:ns3 declaration on each calypso:value element, it should suffice to put it on the xsl:stylesheet element but your earlier posts seemed to say you want to ensure the declaration is present on the value element itself.


--


	Martin Honnen
	http://msmvps.com/blogs/martin_honnen/

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.