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