SOAP-Lite

 view release on metacpan or  search on metacpan

t/Issues/rt75169.t  view on Meta::CPAN

use strict;
use warnings;
use Test::More;
use SOAP::Lite;
use utf8;
use Encode;

my $data = "ü";
my $soap = SOAP::Serializer->new();
$soap->autotype(0);
my $xml = $soap->envelope( freeform => "$data" );
my ( $cycled ) = values %{ SOAP::Deserializer->deserialize( $xml )->body };
is( length( $data ), length( $cycled ), "UTF-8 string is the same after serializing" );


done_testing;

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 0.915 second using v1.00-cache-2.02-grep-82fe00e-cpan-cec75d87357c )