Help for this page

Select Code to Download


  1. 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);
    
  2. or download this
    $folderSOAP->add_to_folder(intel_person => "Jeff Pinyan", intel_alias 
    +=> "japhy");
    
  3. or download this
    my @contents = $folderSOAP->get_contents(intel_person => "Jeff Pinyan"
    +)->result;
    
    for (@contents) {
      print $intelSOAP->display($_)->result;
    }
    
  4. or download this
    my $intelSOAP = SOAP::Lite
      ->ns("/Platform/Intel")
    ...
    my $folderSOAP = SOAP::Lite
      ->ns("/Platform/Folder")
      ->proxy("http://localhost:9999/Platform/Folder");