From: Jonathan S. <jn...@ge...> - 2004-04-22 08:12:02
|
On Wed, 2004-04-21 at 21:30, per...@ro... wrote: > Hello, I am interested in perhaps using the perl module to generate > html from xml data and xsl stylesheets. > > I have a large xml file that is accessed by an xsl stylesheet that > performs multiple iterations to render a complex html page on the fly. > I am using msxml and it is working quite well. > > For making static pages (where ALL of the data is stored in the html > page - and there is no longer a link to the xsl or xml files), I have > used Saxon which is VERY slow. > > Could your module be capable of creating a static html page from the > xml and xsl files? > Sure, XML::XSLT would do this for most XSLT stylesheets, however if you are finding Saxon slow it is likely you are going to find this module even slower - particularly on large xml files - as it is written entirely in Perl. If you are looking for a Perl module that is likely to be quicker than Saxon you might want to to look at XML::LibXSLT which in some benchmarks I have seen does seem to be a lot quicker. /J\ |