summaryrefslogtreecommitdiffstats
path: root/perl/soapclient.pl
blob: 2ab9c2fd4a3f45c0d57e156e91fa31ea73392c03 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/perl -w

use SOAP::Lite;

print SOAP::Lite
    -> uri('http://www.soaplite.com/Demo')
    -> proxy('http://services.soaplite.com/hibye.cgi')
    -> hi()
    -> result . "\n";

exit(0);