tags:

views:

22

answers:

1

Can xsl parse 2 XML file contemporary??? If true => How?

+1  A: 

Not entirely sure what you mean by contemporary, but if you mean 'Can xsl parse 2 xml files simultaneously', the real answer is no, but it can use additional files through the 'document()' function.

Woody
Yes that I mean
Haroldis
Also, It should be say that XSLT is parser "agnostic". XSLT works on XML data model tree, regardless if this tree were built with parsed document, or by DOM or by any means.
Alejandro