Skip to content

Instantly share code, notes, and snippets.

@cfedde
Created January 15, 2014 22:40
Show Gist options
  • Save cfedde/8446186 to your computer and use it in GitHub Desktop.
Save cfedde/8446186 to your computer and use it in GitHub Desktop.
Should I expect this XML::Complle::WSDL11 to work?
#!/opt/bcv/bin/perl
use Modern::Perl;
use XML::Compile::WSDL11; # use WSDL version 1.1
use XML::Compile::SOAP12;
system 'wget -O - http://www.webservicex.com/globalweather.asmx?WSDL > globalweather.wsdl';
my $wsdl = XML::Compile::WSDL11->new('globalweather.wsdl');
say for ($wsdl->operations());
exit 0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment