File size: 1,318 Bytes
158b61b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
#!/usr/bin/env perl
#
# Sample client to print out the search graph
#
use Encode;
use XMLRPC::Lite;
use utf8;
$url = "http://localhost:8086/RPC2";
$proxy = XMLRPC::Lite->proxy($url);
$text = "il a souhaité que la présidence trace à nice le chemin pour l' avenir .";
#$text = "je ne sais pas";
# Work-around for XMLRPC::Lite bug
$encoded = SOAP::Data->type(string => Encode::encode("utf8",$text));
#my %param = ("text" => $encoded );
my %param = ("text" => $encoded , "sg" => "true", "topt" => "true");
#my %param = ("text" => $encoded , "topt" => "true");
die "translation failed" unless $result = $proxy->call("translate",\%param)->result;
print $result->{'text'} . "\n";
exit;
if ($result->{'sg'}) {
print "Search graph: \n";
$sg = $result->{'sg'};
foreach my $sgn (@$sg) {
foreach my $key (keys %$sgn) {
my $value = $sgn->{$key};
print "$key=$value ";
}
print "\n";
}
}
if ($result->{'topt'}) {
print "Translation options: \n";
$sg = $result->{'topt'};
foreach my $sgn (@$sg) {
foreach my $key (keys %$sgn) {
my $value = $sgn->{$key};
if (ref($value) eq 'ARRAY') {
$value = join(",", @$value);
}
print "$key=$value ";
}
print "\n";
}
}
|