Help for this page

Select Code to Download


  1. or download this
      use Demo;
      
    ...
      ;
      print "Contact to SOAP server at ", $daemon->url, "\n";
      $daemon->handle;
    
  2. or download this
      use SOAP::Lite;
      print SOAP::Lite
    ...
        -> proxy('http://localhost::9091')
        -> hi()
        -> result;