Next SOAP::Lite Client Experiences 7

How I was told to write a script


     use SOAP::Lite;

     $HOST = "http://localhost/cgi-bin/ttsoapcgi.exe";
     $NS = "urn:testtrack-interface";

     my $soap = SOAP::Lite
         ->uri($NS)
         ->on_action(sub { return $NS })
         ->proxy($HOST);

Copyright © 2004 David Baird