[Gestalt-users] gexslt:transformation() and namespace bindings
Status: Alpha
Brought to you by:
colin-adams
From: Florent G. <dar...@ya...> - 2006-09-19 21:57:19
|
Hi I'm trying to use gexslt:transformation(). So I wrote the following sample: <xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:gexslt="http://www.gobosoft.com/eiffel/gobo/gexslt/extension" xmlns:my="my:gexslt-transform.xsl" version="2.0"> <my:test> <!-- prints local name of document element --> <xsl:transform xml:id="test" version="2.0"> <xsl:template match="/"> <output> <xsl:value-of select="*[1]/name()"/> </output> </xsl:template> </xsl:transform> </my:test> <xsl:template name="main"> <xsl:sequence select="gexslt:transformation('#test', doc(''))"/> </xsl:template> </xsl:transform> Here is the error I get while running the transformation: $ gexslt gexslt-transform.xsl --template=main <?xml version="1.0" encoding="UTF-8"?>gexslt:COMPILE_FAILED Undeclared namespace error in tag <xsl:transform> Undeclared namespace error in tag <xsl:transform> Any idea of which prefix Gexslt is complaining about? Regards, --drkm ___________________________________________________________________________ Découvrez un nouveau moyen de poser toutes vos questions quelque soit le sujet ! Yahoo! Questions/Réponses pour partager vos connaissances, vos opinions et vos expériences. http://fr.answers.yahoo.com |