|
Hi,
am I alone about also getting the parts from the request in the response?
Now I have an ugly row clearing the parts before method-return
sub foo {
my $self = shift ;
my $envelope = pop ;
...
$envelope->context->packager()->parts([]);
return $ent,SOAP::Data->name('foo')
}
|