Help for this page

Select Code to Download


  1. or download this
    # define the routines ...
    sub return_sumfink {
    ...
                      Reuse => 1)
               -> dispatch_to('return_sumfink','aFunction')
    $daemon->handle;
    
  2. or download this
    $s = SOAP::Lite
         ->proxy("http://$machine:$port")
    ...
    }
    
    return $s->call(@_)->result;
    
  3. or download this
    use SOAP::Lite +autodispatch =>
                   uri=>'ExternalIO',
    ...
    
    $hi = return_sumfink('scalar');
    print $hi . "\n";