Hello everyone, Im new to this forum and well to Perl, trying to make an application which will be using ApacheFOP to create a PDF file, from xml and xsl files. Got some massive help from threads in internet but still having a sort of problem with making everything working.
Code :
Im a windows user, installed somehow apachefop and java.pm so skipped nice bunch of errors already, but now Im getting an error at line 15, "could not connect to java server" i've read already that i have to do something with Paths but well i did it and still nothing moved on, would be glad to get some help from you guys.
Thanks Jacob
Code :
Perl:
use XML::LibXSLT;
use XML::LibXML;
use XML::ApacheFOP;
my $parser = XML::LibXML->new();
my $xslt = XML::LibXSLT->new();
my $source = $parser->parse_file('books.xml');
my $style_doc = $parser->parse_file('books.xsl');
my $stylesheet = $xslt->parse_stylesheet($style_doc);
my $results = $stylesheet->transform($source);
my $Fop = XML::ApacheFOP->new();
$Fop->fop(xml=>"books.xml", xsl=>"books.xsl", outfile=>"temp.pdf") || die "cannot create pdf: " . $Fop->errstr;
Im a windows user, installed somehow apachefop and java.pm so skipped nice bunch of errors already, but now Im getting an error at line 15, "could not connect to java server" i've read already that i have to do something with Paths but well i did it and still nothing moved on, would be glad to get some help from you guys.
Thanks Jacob