import SOAP-WSDL 2.00_15 from CPAN

git-cpan-module:   SOAP-WSDL
git-cpan-version:  2.00_15
git-cpan-authorid: MKUTTER
git-cpan-file:     authors/id/M/MK/MKUTTER/SOAP-WSDL-2.00_15.tar.gz
This commit is contained in:
Martin Kutter
2007-09-11 04:24:21 -08:00
committed by Michael G. Schwern
parent 099c83b6bc
commit 7ba2f93e44
14 changed files with 54 additions and 34 deletions

View File

@@ -2,19 +2,16 @@ package SOAP::WSDL::Deserializer::SOM;
use strict;
use warnings;
our $VERSION = '2.00_14';
our @ISA = qw(SOAP::Deserializer);
our $VERSION = '2.00_15';
our @ISA;
my $HAVE_SOAP_LITE = eval { require SOAP::Lite };
sub deserialize {
my $self = shift;
die 'Cannot deserialize to SOM object without SOAP::Lite.
Please install SOAP::Lite.
'
if not $HAVE_SOAP_LITE;
$self->SUPER::deserialize(@_);
eval {
require SOAP::Lite;
push @ISA, 'SOAP::Deserializer';
}
or die "Cannot load SOAP::Lite.
Cannot deserialize to SOM object without SOAP::Lite.
Please install SOAP::Lite.";
sub generate_fault {
my ($self, $args_from_ref) = @_;