- or download this
# gets (or creates) the "Person" intel for "Jeff Pinyan"
my $japhy_intel = $intelSOAP->call(new => intel_person => "Jeff Pinyan
+")->result;
...
# adds Alias "japhy" to Person "Jeff Pinyan"'s folder
$folderSOAP->add_to_folder($japhy_folder, $alias_intel);
- or download this
$folderSOAP->add_to_folder(intel_person => "Jeff Pinyan", intel_alias
+=> "japhy");
- or download this
my @contents = $folderSOAP->get_contents(intel_person => "Jeff Pinyan"
+)->result;
for (@contents) {
print $intelSOAP->display($_)->result;
}
- or download this
my $intelSOAP = SOAP::Lite
->ns("/Platform/Intel")
...
my $folderSOAP = SOAP::Lite
->ns("/Platform/Folder")
->proxy("http://localhost:9999/Platform/Folder");