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 6643997
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T00:06:57+00:00 2026-05-26T00:06:57+00:00

I have an xsl that copies a xml file and renames the root tag.

  • 0

I have an xsl that copies a xml file and renames the root tag.

<?xml version="1.0" encoding="UTF-8"?>

<xsl:stylesheet version = '1.0'
     xmlns:xsl='http://www.w3.org/1999/XSL/Transform' xmlns:abc="http://example.com">

    <xsl:output method="xml" omit-xml-declaration="yes"/>

    <xsl:template match="node()|@*">
        <xsl:copy>
            <xsl:apply-templates select="node()|@*"/>
        </xsl:copy>
    </xsl:template>

    <xsl:template match="root">
        <test>
            <xsl:apply-templates select="node()|@*"/>
        </test>
    </xsl:template>

    <!--xsl:template match="abc:set">
        -<xsl:apply-templates select="node()|@*"/>-
    </xsl:template-->

</xsl:stylesheet>

That works fine but when I uncomment the last block to handle some namespaced tags I got an error that the says that something is wrong with the copy statement. How can I match and transform namespaced tags?

  • 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-26T00:06:58+00:00Added an answer on May 26, 2026 at 12:06 am

    You are likely getting an error because the abc:set element has attributes, and your template matching on abc:set is producing “naked” attributes that are not attached to an element.

    Since you are not copying the abc:set element (or creating an element) in the template match for abc:set, when the apply-templates inside of that template applies the templates to the selected abc:set/@* and abc:set/node(), then the attributes match the identity template and will be copied forward.

    You can verify whether that is the issue by taking the @* out of the select statement for the apply-templates, like this:

    <xsl:template match="abc:set">
        <xsl:apply-templates select="node()"/>
    </xsl:template>
    

    The template above will only process the child nodes of abc:set.

    If your intent was to simply copy the abc:set, then you don’t need a specific template matching on that element. The identity template will match on it and handle that for you.

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

Sidebar

Related Questions

I have got an XSLT that looks like this: <xsl:stylesheet version=1.0 xmlns:xsl=http://www.w3.org/1999/XSL/Transform> <xsl:output method=xml
For an XML file that has the following structure <?xml version=1.0 encoding=UTF-8> <farm xmlns:my=mynamespace.com
I have XML that looks something like this: <Root xmlns=http://widgetspecA.com/ns> ...any... <WidgetBox> <A/> <B/>
Hi I have a XSL that i'm creating, which looks like this: <xsl:stylesheet version=1.0
I have constructed an XSL file that parses an XML formatted log and generates
I have an XML file and I have an XSL translator file that came
I have a xsl file that is grabbing variables from xml and they seem
I have an XSL that transforms an XML file into a HTML file. Works
I have an XSL stylesheet that I use to create xHTML fragments. The XML
i have the following XSL that will transform an XML file and basically flatten

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.