RE: [xsl] how to process a element named <rule:something>

Subject: RE: [xsl] how to process a element named <rule:something>
From: "Xia Li" <xli@xxxxxxxxxxxxx>
Date: Thu, 7 Aug 2003 12:42:29 -0700
Hi,
  Did you declare the namespace for the prefix "rule"? Try to include the
the namespace declaration "xmlns:rule="http:www.somthing.com/rule" in the
<xsl:stylesheet> element like this,

<xsl:stylesheet xmlns:xsl='http://www.w3.org/1999/XSL/Transform'
version='1.0'
xmlns:lang='en'
xmlns:saxon='http://www.w3.org/1999/XSL/Transform'
xmlns:rule="http:www.somthing.com/rule"
>
<xsl:template match="rule:Choose">
	"THIS IS CHOOSE RULE"
</xsl:template>
</xsl:stylesheet>

It should work.

Lisa


-----Original Message-----
From: owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx
[mailto:owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx]On Behalf Of Abhijit
Junnare
Sent: Thursday, August 07, 2003 12:21 PM
To: XSL-List@xxxxxxxxxxxxxxxxxxxxxx
Subject: [xsl] how to process a element named <rule:something>


Hi All,
I have an XML file which has bunch of rules in it such
as

<rule:choose xmlns:rule="http:www.somthing.com/rule">
SOME TEXT
</rule:choose>

I am writing a stylesheet and I am in debugging
process. I want to display something whenever the
element <rule:choose> appears in the XML document. I
dont want to display the actual contents of this
element but just some generated text such as "This is
Choose rule" or something like this.
Is it possible to process such elements using XSL?
I tried something like this

<xsl:template match="rule:Choose">
"THIS IS CHOOSE RULE"
</xsl:template>

But I get an error saying xmlns:rule not declared.
What do I need to do? Is there any other way to handle
such thing.
Thanks




__________________________________
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com

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



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


Current Thread