in reply to Re^4: Using XML::XSLT to convert XML to CSVin thread Using XML::XSLT to convert XML to CSV
Under normal windows semantics
"C:/path/to/file.xml" [download]
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 [download]