---- you "Saigal, Ankur" <[EMAIL PROTECTED]> wrote ---- > Can I use the "document" tag for fragmenting a single XML document into > multiple documents? Yes, the XSLT function document() works well in Xalan, although using it multiple times to grab parts of the same external document is less efficient than using it once to grab the whole document into a variable, and then using XPaths to grab parts of the document later. Basically if you have a handful of calls to document(), don't worry; if you have a lot or have calls to document() for the same doc repeatedly, it will be slower.
> Although this comes in XSLT 1.1 specs, but then > XALAN implements many features that are supposedly part of 1.1 specs. Actually we do *not* implement the XSLT 1.1 spec, since it's unlikely to be completed. I'm pretty sure that the 1.1 effort is dead and that most future work will be into the 2.0 spec instead. - Shane ===== <eof aka="mailto:[EMAIL PROTECTED]" quote="Odo: [You'd shoot a man in the back?] Garak: [Well, it's the safest way, isn't it?]"/> __________________________________________________ Do You Yahoo!? NEW from Yahoo! GeoCities - quick and easy web site hosting, just $8.95/month. http://geocities.yahoo.com/ps/info1
