in reply to Problem with SOAP::Lite, getting the output from the SOAP server as a complete program and not the return value

This works:
#!/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/']);
  • Comment on Re: Problem with SOAP::Lite, getting the output from the SOAP server as a complete program and not the return value
  • Download Code

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
    Well that won't work either, their webserver is not setup to execute perl
      The point is that the given scripts won't work.