Stuff with the Perl Foundation. A couple of patches in the Perl core. A few CPAN modules. That about sums it up.
Our customer appears to have set things up correctly at their end. Regrettably, SOAP::Lite is a bit, er, confusing. It's retrieving everything correctly, but it's being coy and refusing to actually let me have the data. I think I'll buy it flowers.
returning multiple items? (Score:2)
Re:returning multiple items? (Score:2)
I note that you state it only returns the last item when fetching multiple items. I am fetching multiple items, but I get nothing [perlmonks.org].
use the SOM (Score:1)
sub call
{
my ($uri, $proxy, $timeout, $method, $args, $want) = @_;
my @args = map {SOAP::Data->name($_, $args->{$_})} keys %$args;
my $som = SOAP::Lite
->uri($uri)
->proxy($proxy, timeout => $timeout)
->c