Help for this page

Select Code to Download


  1. or download this
     my $result = $xmlrpc->call( 'examples.getStateStruct',
                            { state1 => 12, state2 => 28 } );
    
  2. or download this
     my $result = $xmlrpc->call('examples.getStateStruct',
              { state1 => sub { {i4 => 12} }, state2 => 28 }
    
  3. or download this
    $xmlrpc->call( 'method_name',
       { name => sub { {'base64' => encode_base64($data)} } } );
    
  4. or download this
    $xmlrpc->call(..., { name => sub { {boolean => $value} } });