xsl-list
[Top] [All Lists]

Re: namespaces problem - two transformations in one stylesheet possible?

2006-02-07 08:31:35
 <xsl:apply-templates select="message"/>

should be either

<xsl:apply-templates select="msg:message"/>

or simply:

<xsl:apply-templates/>

It's best in these situations to reduce the size of the input XML and
stylesheets to the smallest possible examples showing the problem. 
Not only does it make it more likely someone will spend the time
trying to help (rather than wading through lines and lines of code)
you will often find the solution during the reduction process.

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--