xsl-list
[Top] [All Lists]

Re: Namespace problems

2004-09-21 08:55:53

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



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