in reply to XML SOAP Response
Update: Ok, not a character encoding problem at all, please ignore the rest.
I'd expect XML::Parser to return decoded text strings, so you'd have to encode them in the character encoding you want before printing. This might be as simple as adding
binmode STDOUT, ':encoding(UTF-8)';
at the start of your program.
See also: character encodings and perl, Encode, perluniintro, perlunicode.
|
|---|