Help for this page

Select Code to Download


  1. or download this
      use SOAP::Lite;
      use SOAP::Transport::HTTP;
    ...
    
      print "Contact to SOAP server at ", $daemon->url, "\n";
      $daemon->handle;
    
  2. or download this
    package demo;
    
    ...
        $self->{VAR} = shift;
      }
    
  3. or download this
      use SOAP::Lite +autodispatch =>
        uri => 'http://localhost/demo',
    ...
    $obj->getVal();
    $obj->setVal(44);
    $obj->getVal();
    
  4. or download this
    called NEW
    DESTROY - called
    ...
    DESTROY - called
    val = 44
    DESTROY - called