> Hello, > > when I use Xalan C++ 1.8 on Linux, Xalan give me this warning: > XSLT warning: Invalid argument type in the EXSLT function > 'node-set()', source tree node: service > (file:///home/Vitek/xalan-warn/services.xsl, line 35, column 92) > > cmd version: > Xalan ciselniky.xml services.xsl
Xalan-C is simply warning you that you are using the node-set extension function on something that is already a node-set, so you're wasting cycles calling the function. > > when I use xsltproc, everything is OK. > I assume you mean that everything is also "OK" with Xalan-C, except that's it's warning you you're doing something unnecessary. Dave
