RPC::XML 0.59 review

Download
by rbytes.net on

RPC::XML is a set of classes for core data, message and XML handling. SYNOPSIS use RPC::XML; $req = RPC::XML::request->new

License: Perl Artistic License
File size: 126K
Developer: Randy J. Ray
0 stars award from rbytes.net

RPC::XML is a set of classes for core data, message and XML handling.

SYNOPSIS

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;
}

The RPC::XML package is an implementation of the XML-RPC standard.

The package provides a set of classes for creating values to pass to the constructors for requests and responses. These are lightweight objects, most of which are implemented as tied scalars so as to associate specific type information with the value. Classes are also provided for requests, responses, faults (errors) and a parser based on the XML::Parser package from CPAN.

This module does not actually provide any transport implementation or server basis. For these, see RPC::XML::Client and RPC::XML::Server, respectively.

Requirements:
Perl

RPC::XML 0.59 search tags