Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

could not connect to java server

Status
Not open for further replies.

Furia91

Technical User
Oct 7, 2014
1
PL
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 :
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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top