mikesolomon has asked for the wisdom of the Perl Monks concerning the following question:
I have a script sysmon.pl
It gets xml data from a website and parses it
Running it as a .pl file it works perfectly
If I compile it using pp I get the error: Could not find sysmon.xml in U:\Projects\Sugar\utils\ at script/sysmon.pl line 7 9.
My code at line 79 is:
my $edata = XMLin( $xdata, KeyAttr => { workstation => 'name' } );Any idea what I can do to fix it
|
|---|