Help for this page

Select Code to Download


  1. or download this
    my $s = SOAP::Lite
       ->uri('World')
       ->proxy('http://localhost/soap/soapserver.cgi')
    ...
       ->on_debug(sub{print@_});
    # ^^^^^^^^^^^^^^^^^^^^^^^^^^
    print $s->result();
    
  2. or download this
    my $soap = SOAP::Lite
       ->uri('World')
       ->proxy('http://localhost/soap/soapserver.cgi')
    ...
    } else {
       print $som->result();
    }