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

How to remove the automatically generated empty namesp

Subject: How to remove the automatically generated empty namespace by xsl
From: "Ramakant Akhairamka" <rakhaira@xxxxxxxxxxx>
Date: Fri, 14 Apr 2006 20:50:12 +0530
remove empty namespace
Hi ,

I am new to xslt, so my doubt might be naive. The problem i am facing is -
when i try to use <xsl:element .. /> in main template it gets generated fine.
But when i call another template from this one and then use <xsl:element
name="abc />, it generates <abc xmlns="">  .

Here is a sample xsl : (see the two abc tags)

<?xml version="1.0"?>

<xsl:stylesheet version="1.0"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                xmlns:a="http://www.abcd.com/abCD"
                xmlns:fpml="http://www.fpml.org/2004/FpML-4-1"
                 exclude-result-prefixes="goml fpml map">
             <xsl:output method="xml" indent="yes"/>

             <xsl:template match="/">
                <Tag1 xmlns="http://www.abc.com/wahtever"
                        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                        xsi:schemaLocation="http://www.abc.com/wahtever
myschema.xsd">
                     <xsl:element name="abc" />
                     <xsl:call-template name="tem1" />

                </Tag1>
              </xsl:template>
    <xsl:template name="tem1">
        <xsl:element name="abc" />
    </xsl:template>
</xsl:stylesheet>


Output :
<?xml version="1.0" encoding="UTF-8"?>
<Tag1 xmlns:a="http://www.abcd.com/abCD"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.abc.com/wahtever"
xsi:schemaLocation="http://www.abc.com/wahtever myschema.xsd">
<abc/>
<abc xmlns=""/>
</Tag1

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.