Help for this page

Select Code to Download


  1. or download this
    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";
    
  2. or download this
    use SOAP::Lite;
    print "Google price is: ", SOAP::Lite
    -> service ('http://www.xmethods.net/sd/StockQuoteService.wsdl')
    -> getQuote('GOOG');