Help for this page
use SOAP::Lite; my $response = SOAP::Lite -> uri('urn:xmethods-delayed-quotes') -> proxy('http://services.xmethods.net/soap'); print "Google price is: ", $response->getQuote('GOOG')->result, "\n";
use SOAP::Lite; print "Google price is: ", SOAP::Lite -> service ('http://www.xmethods.net/sd/StockQuoteService.wsdl') -> getQuote('GOOG');