use SOAP::Lite +trace; my $client = SOAP::Lite->new(); $client->uri('urn:Hello'); $client->proxy('tcp://localhost:5000'); my $som = $client->hello("Test"); my $output = $som->result; print $output . "\n";