- 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;
- or download this
#!/usr/bin/perl
#SOAP SERVER
...
$dbh->disconnect();
return "UPDATED";
}
- 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")
)
);
- 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")
)
);
- or download this
#!/usr/bin/perl
#getTodoList
...
SOAP::Data->name("acronym")->value("$acro")
)
);
- or download this
#!/usr/bin/perl
#updateTdo
...
SOAP::Data->name("id")->value("$id")
)
);