Help for this page

Select Code to Download


  1. or download this
    # you should specify uri()
    my $soap = SOAP::Lite
    ...
    # as if you call $obj->method() and method() updates $obj
    # Update of modified object MAY not work if server on another side 
    # is not SOAP::Lite
    
  2. or download this
    #! /usr/bin/perl -w
    use strict;
    ...
    print $soap->call( formal => $greeter )->result;
    
    __END__