Subject: | Typo in operationsFromWSDL |
faultNotImplemented is not called correctly on operations generated from
operationsFromWSDL. The error is a simple typo:
sub operationsFromWSDL($@)
{ my ($self, $wsdl, %args) = @_;
my $callbacks = $args{callbacks} || {};
my %names;
my $default = $args{default_callback}
+ || sub {shift->faultNotImplemented(@_)};
- || sub {$self->faultNotImplemented(@_)};