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

Creating namespace attributes

Subject: Creating namespace attributes
From: Arulraj <p_arulraj@xxxxxxxxx>
Date: Wed, 17 Aug 2005 23:40:34 -0700 (PDT)
namespace attributes
Hi,

I have the following xml
XML:
<?xml version="1.0" encoding="ISO-8859-1"?>
<namespace>
<bo>http://cal/h2wdms/common/bo/</bo>  
<h2w>http://cal/h2w/common/bo/</h2w>
</namespace>

I need a output like the following
-----------------------------------
<?xml version="1.0" encoding="UTF-8"?>
<output><namespace
xmlns:bo="http://cal/h2wdms/common/bo/"
xmlns:h2w="http://cal/h2w/common/bo/"/></output>

Here is my XSL:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml"/>
<xsl:template match="namespace">
<output>
 <namespace>
<xsl:for-each select="child::*"> 
                <xsl:variable name="NameSpace"
select="name()"></xsl:variable> 
                <xsl:variable name="Location"
select="."></xsl:variable>
 		<xsl:variable
name="NS"><xsl:text>xmlns:</xsl:text><xsl:value-of
select="$NameSpace"></xsl:value-of></xsl:variable> 
             <xsl:attribute name="{$NS}"><xsl:value-of
select="$Location"/></xsl:attribute>
</xsl:for-each>
 </namespace>             

</output>
</xsl:template>
</xsl:stylesheet>

In the above XSL,<xsl:text>xmlns:</xsl:text> is not
working.
Any help?
Thanks in advance
Regards,
Arul


__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

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.