|
|
 |
| XSLT General questions and answers about XSLT. For issues strictly specific to the book XSLT 1.1 Programmers Reference, please post to that forum instead. |
Welcome to the p2p.wrox.com Forums.
You are currently viewing the XSLT section of the Wrox p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.
|
 |

June 26th, 2006, 06:09 AM
|
|
Registered User
|
|
Join Date: Jun 2006
Location: , , .
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
change namespace leaving prefix unchanged
Hi,
I would like to make an identity transformation in XSLT, but changing a prefix namespace to point to another namespace. I need to keep the same prefix as it's used internally in attributes to form QNames.
For example:
<process name="hello" xmlns:client="http://client1">
should be changed to:
<process name="hello" xmlns:client="http://client2">
so subsequent attributes can still refer to "client" prefix name.
If it can't be done in standard XSLT 2.0, I'd like to know if some XSLT engine provides some extensions to get this.
Thank you.
|

June 26th, 2006, 06:40 AM
|
 |
Wrox Author
Points: 12,735, Level: 48 |
|
|
Join Date: Apr 2004
Location: Reading, Berks, United Kingdom.
Posts: 3,923
Thanks: 0
Thanked 82 Times in 80 Posts
|
|
Use the modified identity template:
<xsl:template match="client:*" xmlns:client="http://client1">
<xsl:element name="{name()}" namespace="http://client2">
<xsl:copy-of select="@*"/>
<xsl:apply-templates/>
</xsl:element>
</xsl:template>
XSLT 1.0 encourages processors to use the prefix given by "name()", that is the original prefix. XSLT 2.0 makes it mandatory to use this prefix unless there is a conflict.
Michael Kay
http://www.saxonica.com/
Author, XSLT Programmer's Reference and XPath 2.0 Programmer's Reference
|

June 26th, 2006, 07:49 AM
|
 |
Wrox Author
|
|
Join Date: Jun 2003
Location: Exeter, , United Kingdom.
Posts: 2,922
Thanks: 0
Thanked 13 Times in 12 Posts
|
|
So can you force the issue in version 1.0 by doing the following?
Code:
<xsl:element name="client:{local-name()}" namespace="http://client2">
--
Joe ( Microsoft MVP - XML)
|

June 26th, 2006, 08:31 AM
|
 |
Wrox Author
Points: 12,735, Level: 48 |
|
|
Join Date: Apr 2004
Location: Reading, Berks, United Kingdom.
Posts: 3,923
Thanks: 0
Thanked 82 Times in 80 Posts
|
|
XSLT 1.0 says: "XSLT processors may make use of the prefix of the QName specified in the name attribute when selecting the prefix used for outputting the created element as XML; however, they are not required to do so."
But I think most processors in practice do respect the choice of prefix.
Michael Kay
http://www.saxonica.com/
Author, XSLT Programmer's Reference and XPath 2.0 Programmer's Reference
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
 |