Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
Is there any way of debugging what the script is sending to the server to see what is being added?#!c:\perl\bin\perl.exe use strict; use warnings; use XML::LibXSLT; use XML::LibXML; my $parser = XML::LibXML->new(); my $xslt = XML::LibXSLT->new(); my $source = $parser->parse_file('xml'); my $style_doc = $parser->parse_file('xsl'); my $stylesheet = $xslt->parse_stylesheet($style_doc); my $results = $stylesheet->transform($source); print $stylesheet->output_string($results);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Malformed headers from LibXSLT
by almut (Canon) on Apr 12, 2008 at 11:23 UTC | |
by Anonymous Monk on Apr 12, 2008 at 11:31 UTC | |
|
Re: Malformed headers from LibXSLT
by oko1 (Deacon) on Apr 12, 2008 at 15:08 UTC |