in reply to Re^4: Using XML::XSLT to convert XML to CSV
in thread Using XML::XSLT to convert XML to CSV

also
XML::Parser version is 2.34
  • Comment on Re^5: Using XML::XSLT to convert XML to CSV

Replies are listed 'Best First'.
Re^6: Using XML::XSLT to convert XML to CSV
by Joost (Canon) on Aug 27, 2007 at 20:05 UTC
    Ok, that's also the same as mine.

    Under normal windows semantics

    "C:/path/to/file.xml"
    should be acceptable, provided you've actually got permissions to read that file (which probably includes read access to the directories above it)

    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