Created
January 15, 2014 22:40
-
-
Save cfedde/8446186 to your computer and use it in GitHub Desktop.
Should I expect this XML::Complle::WSDL11 to work?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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