Help for this page

Select Code to Download


  1. or download this
    my $soap = SOAP::Lite
    ->uri('http://tempuri.org')
    ...
    ->proxy('http://xxx/a.asmx');
    
    my $result = $soap->getID();   #It works
    
  2. or download this
    #
    my $str = <<"XML";
    ...
    </node>
    XML
    my $result = $soap->getNum($str); #It doesn't work --update