#!/usr/bin/perl use strict; use warnings; use SOAP::Lite; print SOAP::Lite -> uri('http://www.soaplite.com/Demo') -> proxy('http://services.soaplite.com/hibye.cgi') -> hi() -> result; my $soap = SOAP::Lite->proxy('http://endpoint.server/', proxy => ['http' => 'http://my.proxy.server/']);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Problem with SOAP::Lite, getting the output from the SOAP server as a complete program and not the return value
by Anonymous Monk on Jan 08, 2010 at 21:51 UTC | |
by Khen1950fx (Canon) on Jan 08, 2010 at 23:44 UTC |