xsl-list
[Top] [All Lists]

Re: [xsl] Merging multiple documents and combining their nodes

2007-06-13 09:14:43
Mark Peters wrote:

What name-space is used for exslt:node-set?  I'm trying the following,
as described on http://www.exslt.org/howto.html, but Xalan throws the
error, "Prefix must resolve to a namespace: exslt."


<xsl:stylesheet version="1.0"
         xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
         xmlns:math="http://exslt.org/common";>

Should be
  xmlns:exslt="http://exslt.org/common";
if you later use exslt:node-set.


--

        Martin Honnen
        http://JavaScript.FAQTs.com/

--~------------------------------------------------------------------
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>
--~--