NAME

XML::Xalan - Perl interface to Xalan C++

SYNOPSIS

use XML::Xalan;

my $tr = new XML::Xalan::Transformer;

my $compiled = $tr->compile_stylesheet_file("foo.xsl");
my $parsed = $tr->parse_file("foo.xml");

$tr->transform_to_file($parsed, $compiled, $dest_file)
  or die $tr->errstr;

DESCRIPTION

Perl interface to the Xalan C++ version 1.2. See XML::Xalan::Transformer documentation for further information.

AUTHOR

Edwin Pratomo, edpratomo@cpan.org

SEE ALSO

XML::Xalan::Transformer(3), XML::Xalan::DocumentBuilder(3), XML::Xalan::DOM(3).