Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use RPC::XML;
    ...
            return RPC::XML::fault->new('444', 'not good');
        }
    }
    
  2. or download this
    #!/usr/bin/perl -w
    require RPC::XML;
    ...
    
    print $hash->{answer};
    print "\n";
    
  3. or download this
     ./rpcxmlserver.pl 
    $VAR1 = [
    ...
              'event_type' => '1',
              'called_number_int' => '+420223344600'
            };
    
  4. or download this
     ./rpcxmlklient.pl 
    $VAR1 = \bless( {
    ...
                'answer' => 'OK bejby'
              };
    OK bejby
    
  5. or download this
    my $serv = shift;
    my $hash = shift; 
    my %hash = %$hash;
    
  6. or download this
    $hash = $resp->value;