I could reach to this level with your help, but some silly mistake is haunting..
use XML::Simple qw(:strict); use File::Find; use strict; use warnings; use Carp; use File::Find; use XML::Parser; use File::Spec::Functions qw( canonpath ); if ( @ARGV == 0 ) { push @ARGV, "D:\\xml test"; warn "Using default path $ARGV[0]\n Usage: $0 path ...\n"; } open(HTML_FILE, ">JBAT_Report.html") || die "Can't open file: $!\n"; # Print the initial HTML tags print HTML_FILE "<html>\n<body>\n<h1>BAT Report - JMeter Test</h1>\n<h +r><br><table class=MsoTableGrid border=1 cellspacing=0 cellpadding=0 +><tr><th><p>TestPlan</p></th><th><p>Test Failed?</p></th><th><p>Failu +reMessage</p></th><th><p>Link to Source</p></th></tr>"; find( sub { return unless ( /[.]log\z/i and -f ); #getting multiple xml fi +les with .log format extract_information(); return; }, @ARGV ); sub extract_information { my( $error, $value, $failure, $failureMessage ) = ("") x 4; my $xmlFile = $_; # is this correct? #print HTML_FILE $xmlFile; my $xmlDocument = XMLin($xmlFile, ForceArray => 1, KeyAttr => {}, ); # it shows error here foreach my $httpSample (@{$xmlDocument->{httpSample}}) { print HTML_FILE qq| $httpSample->{assertionResult}->[0]->{failure} +->[0]\n|; print HTML_FILE qq| $httpSample->{assertionResult}->[0]->{error}-> +[0]\n|; print HTML_FILE qq| $httpSample->{assertionResult}->[0]->{failureM +essage}->[0]\n\n|; } print HTML_FILE <<"EOF"; <tr><td><p>$value</p><td><p>$failure</p></td><td><p>$failureMessage</p +></td></tr> EOF return; } print HTML_FILE "</body><br></html>"; close (HTML_FILE);
But its throwing "File does not exist: 0 at 98675.pl line 33"

In reply to Re^2: reading multiple xmls in a folder and to get tagvalues stored and then printed to HTML by numberuno
in thread reading multiple xmls in a folder and to get tagvalues stored and then printed to HTML by numberuno

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.