Help for this page

Select Code to Download


  1. or download this
     use SOAP::Lite
        proxy => 'http://localhost/cgi-bin/soap.cgi',
    ...
      # or you may override any settings you want
      my $soap3 = SOAP::Lite->proxy('http://localhost/');
      print $soap3->getStateName(1)->result;
    
  2. or download this
    #!/usr/bin/perl
    #SOAP SERVER
    ...
        $dbh->disconnect();
        return "UPDATED";
    }
    
  3. or download this
    #!/usr/bin/perl
    use strict 'vars'; #this is to protect unquotted string,bareword which
    + come from Soap trace
    ...
        SOAP::Data->name("note")->value("$text"),SOAP::Data->name("priorit
    +y")->value("$prio") 
        )
        );
    
  4. or download this
    #!/usr/bin/perl
    use strict 'vars'; #this is to protect unquotted string,bareword which
    + come from Soap trace
    ...
        SOAP::Data->name("id")->value("$id")
        )
        );
    
  5. or download this
    #!/usr/bin/perl
    #getTodoList
    ...
        SOAP::Data->name("acronym")->value("$acro")
        )
        );
    
  6. or download this
    #!/usr/bin/perl
    #updateTdo
    ...
              SOAP::Data->name("id")->value("$id")
        )
        );