Help for this page

Select Code to Download


  1. or download this
    my $soap = SOAP::Lite
      ->uri($uri)->proxy( $proxyUrl, timeout => 5 )
      ->deserializer(XMLRPC::Lite->new());
    
  2. or download this
    my $soap = SOAP::Lite
      ->uri($uri)->proxy( $proxyUrl, timeout => 5 )
    ...
    sub deserialize { return $_[1] }
    
    1;