Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: Re: Getting an XML-RPC array with Frontier::Client

by jaldhar (Vicar)
on Apr 10, 2003 at 22:59 UTC ( [id://249766]=note: print w/replies, xml ) Need Help??


in reply to Re: Getting an XML-RPC array with Frontier::Client
in thread Getting an XML-RPC array with Frontier::Client

Update: nicer error-handling code, correction of syntax errors.

Sorry I got sidetracked by other things (or rather I got retracked from this side track :-) but I returned to this subject and your advice was invaluable.

In the end though I used RPC::XML which is just as easy to use and apparently more complete. Here is what my example code would look like with this module:

use RPC::XML::Client; my $client = RPC::XML::Client->new('http://www.advogato.org/XMLRPC'); my $result = $client->send_request('test.guess'); die $result unless defined($result); die $result->code . ': ' . $result->string if $result->is_fault; print join(' ', @{$result->value}), "\n";

--
જલધર

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://249766]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (3)
As of 2024-04-16 14:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found