import SOAP-WSDL 2.00.05 from CPAN
git-cpan-module: SOAP-WSDL git-cpan-version: 2.00.05 git-cpan-authorid: MKUTTER git-cpan-file: authors/id/M/MK/MKUTTER/SOAP-WSDL-2.00.05.tar.gz
This commit is contained in:
committed by
Michael G. Schwern
parent
c3e3d1908e
commit
c2ac24dd0f
@@ -0,0 +1,16 @@
|
||||
use SOAP::WSDL::Expat::WSDLParser;
|
||||
use Devel::Leak;
|
||||
my $xml = `cat ../wsdl/11_helloworld.wsdl`;
|
||||
|
||||
my ($table, $count);
|
||||
|
||||
|
||||
for (1..5) {
|
||||
$count = Devel::Leak::NoteSV($table);
|
||||
print "SV: $count \n";
|
||||
my $parser = SOAP::WSDL::Expat::WSDLParser->new();
|
||||
$parser->parse_string($xml);
|
||||
my $data = $parser->get_data();
|
||||
undef $parser;
|
||||
undef $data;
|
||||
}
|
||||
Reference in New Issue
Block a user