in reply to How to convince SOAP::Lite to return UTF-8 data in responses as UTF-8?

You can turn off base64 encoding:
my $string = SOAP::Data->type( string => 'UTF-8' );
  • Comment on Re: How to convince SOAP::Lite to return UTF-8 data in responses as UTF-8?
  • Download Code

Replies are listed 'Best First'.
Re^2: How to convince SOAP::Lite to return UTF-8 data in responses as UTF-8?
by mithaldu (Monk) on Feb 20, 2012 at 20:28 UTC
    That helps with single strings, but when you have a complex data structure i'd still need to walk the entire tree to mark all of the strings.
Re^2: How to convince SOAP::Lite to return UTF-8 data in responses as UTF-8?
by Anonymous Monk on Feb 21, 2012 at 02:06 UTC