in reply to Re^5: Using XML::XSLT to convert XML to CSV
in thread Using XML::XSLT to convert XML to CSV
Under normal windows semantics
should be acceptable, provided you've actually got permissions to read that file (which probably includes read access to the directories above it)"C:/path/to/file.xml"
You can try passing an XML::DOM object instead of a file (XML::XSLT supports both):
# stuff here.. my $parser = new XML::DOM::Parser; my $doc = $parser->parsefile ("c:/path/to/file.xml"); $xslt->transform($doc); # proceed
|
|---|