Take me over?
NAME
JSON::RPC::Common::Procedure::Call::Version_1_1 - JSON-RPC 1.1 Procedure Call
SYNOPSIS
use JSON::RPC::Common::Procedure::Call;
my $req = JSON::RPC::Common::Procedure::Call->inflate({
version => "1.1",
id => "oink",
params => { foo => "bar" },
});
DESCRIPTION
This class implements JSON-RPC 1.1 Procedure Calls according to the 1.1 working draft: http://json-rpc.org/wd/JSON-RPC-1-1-WD-20060807.html.
JSON RPC 1.1 requests are never notifications, and accept either hash references or array references as parameters.
Note that the alternative JSON RPC 1.1 proposition is also be supported: http://groups.google.com/group/json-rpc/web/json-rpc-1-1-alt. kwparams
is accepted as an alias to params
, but params
will also accept hash references. However, to simplify things, params
and kwparams
are mutually exclusive, since Perl doesn't have strong support for named params.
The alternative spec does not offer notifications (it is a TODO item), so currently is_notification
always returns false.