in reply to Re: xml::writer and xml::LibXML
in thread xml::writer and xml::LibXML

I don't get the ctrl-z with your file open procedure....here's what I'm using
$xml_out = new IO::File(">$filename"); # 'OUTPUT' writes to this file # 'DATA_MODE' writes <CRLF> after each line # 'DATA_INDENT' indents each level four spaces $xml_writer = new XML::Writer( OUTPUT => $xml_out, DATA_MODE => 'true', DATA_INDENT => 4 );
I'll give your open routine a shot....thanks

Replies are listed 'Best First'.
Re^3: xml::writer and xml::LibXML
by fionbarr (Friar) on May 15, 2013 at 16:36 UTC
    it looks like that did it! Thank you.