Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7085245
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T07:24:03+00:00 2026-05-28T07:24:03+00:00

I use XSLT as a code generator for various components, including other XSLT. For

  • 0

I use XSLT as a “code generator” for various components, including other XSLT. For example, I have a query that produces an XML output of MSSQL sys.columns rows for a table, and wish to produce an XSLT that includes a table with a column for each row.

So I want to produce the following XSLT:

<xsl:stylesheet version="1.0" xmlns:format="urn:qbo3-formatting" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  ...
</xsl:stylesheet>

I generate the XSLT above with something like this ‘generator’ XSLT:

<xsl:element name="xsl:stylesheet">
  <xsl:attribute name="version">1.0</xsl:attribute>
  <xsl:attribute name="format" namespace="http://www.w3.org/XML/1998/namespace" >urn:qbo3-formatting</xsl:attribute>
  ...
</xsl:element>

The problem is that this ‘generator’ XSLT produces:

<xsl:stylesheet version="1.0" xml:format="urn:qbo3-formatting" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  ...
</xsl:stylesheet>

Note the xml:format instead of the desired xmlns:format.

According to W3C, ‘xmlns’ is reserved and bound to ‘http://www.w3.org/2000/xmlns/&#8217;. If I attempt to create the format attribute above using this namespace, I get an error:

Elements and attributes cannot belong to the reserved namespace 'http://www.w3.org/2000/xmlns/'.

Any suggestions on a work-around?

Thanks in advance,

Eric

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T07:24:04+00:00Added an answer on May 28, 2026 at 7:24 am

    This is exactly the main usecase for the <xsl:namespace-alias> instruction:

    <xsl:stylesheet version="1.0"
     xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
     xmlns:format="some:format"
     xmlns:xxx="xxx">
     <xsl:output omit-xml-declaration="yes" indent="yes"/>
    
     <xsl:namespace-alias stylesheet-prefix="xxx"
                          result-prefix="xsl"/>
    
     <xsl:template match="/">
        <xxx:stylesheet version="1.0"
             xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
             xmlns:format="some:format"
         >
    
          <xxx:template match="node()|@*">
            <xxx:copy>
              <xxx:apply-templates select="node()|@*"/>
             </xxx:copy>
          </xxx:template>
        </xxx:stylesheet>
    
     </xsl:template>
    </xsl:stylesheet>
    

    When this transformation is applied on any XML document (not used), the wanted result (a new stylesheet with all wanted attributes and namespaces) is produced:

    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                    xmlns:format="some:format">
      <xsl:template match="node()|@*">
        <xsl:copy>
          <xsl:apply-templates select="node()|@*" />
        </xsl:copy>
      </xsl:template>
    </xsl:stylesheet>
    

    Do note: Avoid using xsl:element and prefer xsl:namespace-alias whenever the transformation should generate another XSLT stylesheet.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an XML document with un-namespaced elements, and I want to use XSLT
Does anyone have any suggestions for a good tool, xslt or other that can
I use this code to transform XML to HTML using XSLT template: string uri
Can I use xml/xslt for dynamic html generation in my code behind with my
I'm trying to use XSLT text output to generate a file (in a file
The use of XSLT (XML Stylesheet Language Transform) has never seen the same popularity
A coworker of mine mentioned that one use of XSLT is processing business rules.
Often, programmers write code that generates other code. (The technical term is metaprogramming ,
I want to use XSLT to modify : <Office Code=1 OtherAttribute=5> <Customer CustomerId=0010 CodeModifier=A/>
I needed to use XSL to generate simple plain text output from XML. Since

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.