Astro-SIMBAD-Client
view release on metacpan or search on metacpan
inc/My/Module/Build.pm view on Meta::CPAN
or push @depends_on, 'build';
-e 'META.json'
or push @depends_on, 'distmeta';
@depends_on
and $self->depends_on( @depends_on );
return;
}
sub harness_switches {
my ( $self ) = @_;
my @res = $self->SUPER::harness_switches();
foreach ( @res ) {
'-MDevel::Cover' eq $_
or next;
$_ .= '=-db,cover_db,-ignore,inc/';
}
return @res;
}
1;
lib/Astro/SIMBAD/Client/WSQueryInterfaceService.pm view on Meta::CPAN
if ($self->serializer->can ('register_ns')) { ## TRW
$self->serializer->register_ns("http://schemas.xmlsoap.org/wsdl/soap/","wsdlsoap");
$self->serializer->register_ns("http://schemas.xmlsoap.org/wsdl/","wsdl");
$self->serializer->register_ns("http://uif.simbad.cds","intf");
$self->serializer->register_ns("http://uif.simbad.cds","impl");
$self->serializer->register_ns("http://schemas.xmlsoap.org/soap/encoding/","soapenc");
$self->serializer->register_ns("http://xml.apache.org/xml-soap","apachesoap");
$self->serializer->register_ns("http://www.w3.org/2001/XMLSchema","xsd");
} ## TRW
my $som = $self->SUPER::call($method => @parameters);
if ($self->want_som) {
return $som;
}
## TRW vvvv
## UNIVERSAL::isa($som => 'SOAP::SOM') ? wantarray ? $som->paramsall : $som->result : $som;
return eval {$som->isa('SOAP::SOM')} ? wantarray ? $som->paramsall : $som->result : $som;
## TRW ^^^^
}
sub BEGIN {
( run in 0.365 second using v1.01-cache-2.11-cpan-a9ef4e587e4 )