Help for this page

Select Code to Download


  1. or download this
    #!perl -w
      use SOAP::Transport::HTTP;
    ...
      sub bye {                    
        return "goodbye, cruel world";
      }
    
  2. or download this
    #!perl -w
      use SOAP::Lite;
    ...
        -> proxy('http://www.mysite.com/hibye.cgi')
        -> hi()
        -> result;