Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    
    package My::Soapy;
    sub testy { return "happy!"; }
    
  2. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    
    sub get { print "got: " . SOAP::Lite->uri('http://tako:3004/My/Soapy')
        ->proxy('http://tako:3004')->testy()->result . $/; }