Help for this page

Select Code to Download


  1. or download this
    use SOAP::Lite +trace=>'all'; #removing tracing later
    
    ...
    print $soap_resp->result;
    
    if ($soap_resp->fault){print $soap_resp->faultstring}
    
  2. or download this
    #!/usr/bin/perl -w                                                    
    +        
    use strict;
    ...
         SOAP::Transport::HTTP::CGI->dispatch_to('WebServiceFunctions')->h
    +andle;
    
    1;