in reply to XML::Generator's xmldecl

Looking at the source, you need to specify encoding and version in the constructor, not in the method call:

my $gen = XML::Generator->new( conformance => 'strict', escape => 'always', pretty => 2, encoding => 'UTF-8', version => '1.0', ); print $gen->xmldecl(), $gen->request( $gen->name('value') );

Replies are listed 'Best First'.
Re: Re: XML::Generator's xmldecl
by AzaBat (Acolyte) on Jul 29, 2003 at 05:12 UTC

    Thanks chromatic! Look at the source??? I don't know why I didn't think of that. It's even documented there.

    AzaBat