in reply to Re: Web services client in Perl
in thread Web services client in Perl
use SOAP::Lite; print "<HTML>\n"; print " <TITLE>CGI perl web services client</TITLE>\n"; print "<br>"; my $service= SOAP::Lite -> service( 'http://localhost:8080/MyCalculatorServer/CalculatorWSService?wsdl +'); my $result = $service->getUnitCageSlot(1234); print "result is: ", $result; print "</br>\n"; #$service->getUnitCageSlot(1234); print "</HTML>\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Web services client in Perl
by olus (Curate) on Jan 09, 2008 at 17:15 UTC | |
by sshahar1 (Initiate) on Jan 10, 2008 at 09:20 UTC | |
by Anonymous Monk on Jan 10, 2008 at 09:12 UTC |