Sophie

Sophie

distrib > Mandriva > 2011.0 > x86_64 > by-pkgid > 3f070fffbf27156852f88d0547d8fff0 > files > 108

perl-SOAP-Lite-0.712.0-2.noarch.rpm

#!/usr/bin/perl -w


# -- SOAP::Lite -- soaplite.com -- Copyright (C) 2001 Paul Kulchenko --

BEGIN { warn "Started...\n" }

# import interface. All methods from loaded service are imported by default
use SOAP::Lite
  service => 'http://services.xmethods.net/soap/urn:xmethods-delayed-quotes.wsdl',
  # service => 'file:/your/local/path/xmethods-delayed-quotes.wsdl',
  # service => 'file:./xmethods-delayed-quotes.wsdl',
;

warn "Loaded...\n";
print getQuote('MSFT'), "\n";