File: states.pl

package info (click to toggle)
soap-lite 0.55-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,100 kB
  • ctags: 516
  • sloc: perl: 8,038; makefile: 55; cs: 16
file content (15 lines) | stat: -rw-r--r-- 360 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!perl -w
#!d:\perl\bin\perl.exe 

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

use Win32::OLE;

$soap = Win32::OLE->CreateObject('SOAP.Lite')->new
  or die "SOAP::Lite for COM is not installed";

$soap->proxy('http://localhost/')
     ->uri('http://www.soaplite.com/My/Examples');

print $soap->getStateName(shift || 25)->result;