bears22 has asked for the wisdom of the Perl Monks concerning the following question:
The web service I have contains one exposed webmethod, ConvertTemperature, and it excepts a value and returns a result. Again, I am running this locally on my own machine. Thanks,use SOAP::Lite; print SOAP::Lite -> uri('http://localhost/WebService1/Service1.asmx') -> proxy('http://localhost/WebService1/Service1.asmx') -> ConvertTemperature(0) -> result; print "test for soap call using SOAP::Lite";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: How to call a .NET web service from PERL
by runrig (Abbot) on Jan 14, 2005 at 21:57 UTC | |
|
Re: How to call a .NET web service from PERL
by bpphillips (Friar) on Jan 17, 2005 at 13:26 UTC | |
|
Re: How to call a .NET web service from PERL
by hardburn (Abbot) on Jan 14, 2005 at 21:43 UTC | |
by bears22 (Initiate) on Jan 14, 2005 at 21:49 UTC | |
|
Re: How to call a .NET web service from PERL
by gellyfish (Monsignor) on Jan 17, 2005 at 11:38 UTC |