The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
use strict;
use warnings;
use Test;
use SOAP::Lite;

plan tests => 3;

ok my $soap = SOAP::Lite->new(
    proxy => 'loopback://test',
    # outputxml => 1,
);

ok my $som = $soap->call('test', SOAP::Data->name('test')->value(42));

ok $som->result() == 42;