1#!perl -w
2#!d:\perl\bin\perl.exe
3
4# -- SOAP::Lite -- soaplite.com -- Copyright (C) 2001 Paul Kulchenko --
5
6use SOAP::Lite;
7
8# object interface
9my $service = SOAP::Lite
10  -> service('http://services.xmethods.net/soap/urn:xmethods-delayed-quotes.wsdl');
11
12print $service->getQuote('MSFT'), "\n";
13