Re: [xsl] Namespace problems

Subject: Re: [xsl] Namespace problems
From: Bruce D'Arcus <bdarcus@xxxxxxxxxxxxx>
Date: Tue, 21 Sep 2004 11:55:53 -0400
On Sep 21, 2004, at 11:48 AM, Ricardo Saraiva wrote:

On the xsl I'm trying to enter the Products element but with no sucess...

<xsl:stylesheet version="1.0" xmlns="http://a.com/ontology#";

Try adding this declaration:


xmlns:a="http://a.com/ontology#";

... and then change the below to add the prefix.

<xsl:template match="Products">
	<xsl:element name="Product_class"/>
</xsl:template>

Bruce


Current Thread