File: simple1.pl

package info (click to toggle)
soap-lite 0.710.08-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 1,716 kB
  • ctags: 624
  • sloc: perl: 11,171; xml: 90; makefile: 29; cs: 16
file content (13 lines) | stat: -rw-r--r-- 336 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!perl -w
#!d:\perl\bin\perl.exe 

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

use SOAP::Lite;

# simple object interface
print SOAP::Lite 
  -> uri('http://simon.fell.com/calc')
  -> proxy('http://soap.4s4c.com/ssss4c/soap.asp')
  -> doubler(SOAP::Data->name(nums => [10,20,30,50,100]))
  -> result ->[1];