xsl-list
[Top] [All Lists]

Namespace related question

2003-07-12 22:00:13

From:    sumit(_at_)att(_dot_)net
To:      XSL-List(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: Namespace related question
Date:    Sun, 13 Jul 2003 04:52:26 +0000

I am a novice and struggling for last few days to get the solution.

here is sample xml document, I want to read the value of attribute xmlns.Res 
using XSL stylesheet 

<PT xmlns.Res="PT_MSG"> 
....
</PT>

here's my stylesheet
<?xml version="1.0"?>
<xsl:stylesheet  version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
<xsl:output method="html" indent="yes" />

                <xsl:template match="HFPT" 
xmlns="http://www.w3.org/XML/1998/namespace";> 
                <xsl:copy-of select="@xmlns:Res" />
                </xsl:template>

</xsl:stylesheet>

I tried <xsl:copy-of select="@xmlns:Res" />, I got error message -
"Namespace prefix xmlns has not been declared".

So how can I do it in XSL ?

Any solution will be appreciated.

Thanks

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



<Prev in Thread] Current Thread [Next in Thread>