sir_com has asked for the wisdom of the Perl Monks concerning the following question:
I have a question on making web services call and getting the result. I have a server where the web services are hosted and I am using XML-RPC to make the call. I have gone through the article "Creating Web Services with XML-RPC" http://use.perl.org/article.pl?sid=01/02/05/1438258 and doing accordingly. Below is my code sample but it's not returing any result.
#!/bin/perl use strict; use Frontier::Client; my $rps = Frontier::Client->new('url' => 'http://servername/services/D +MIService?wsdl'); print "Calling ServerID()\n"; my $suuid=$rps->call("ServerID"); print "\n=-----------------=\n"; print "Server ID is $suuid\n"; print "\ndone\n";
It should return me the server ID but not getting any result. Could you please help me on these. Thanks.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: web services call
by Anonymous Monk on Aug 20, 2009 at 14:04 UTC | |
by sir_com (Acolyte) on Aug 21, 2009 at 13:40 UTC | |
by Anonymous Monk on Aug 21, 2009 at 13:46 UTC | |
by sir_com (Acolyte) on Aug 24, 2009 at 18:48 UTC |