in reply to Re: Frontier::Client and getting right XML output
in thread Frontier::Client and getting right XML output
use RPC::XML; $req = RPC::XML::request->new('fetch_prime_factors', RPC::XML::int->new(985120528)); ... $resp = RPC::XML::Parser->new()->parse(STREAM); if (ref($resp)) { return $resp->value->value; } else { die $resp; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Frontier::Client and getting right XML output
by rjray (Chaplain) on May 21, 2004 at 23:57 UTC |