Help for this page

Select Code to Download


  1. or download this
    use SOAP::Lite +trace =>
        'all';
    ...
    
    print "Contact to SOAP server at ", $daemon->url, "\n";
    $daemon->handle;
    
  2. or download this
    use SOAP::Lite +autodispatch =>
        uri => 'urn:',
    ...
    my $aParent = $aChild->parent();
    
    print $aParent->toString(), "\n";
    
  3. or download this
    package Node;
    
    ...
    }
    
    1;