Subject: | JSON::RPC::Server::CGI should be using $self->path_info instead of $cgi->path_info |
JSON::RPC::Server::CGI::retrieve_json_from_get does:
my $method = $cgi->path_info;
But in new() you've already initialized $self->path_info to
$cgi->path_info, so shouldn't you be using $self->path_info? That also
makes it easier to write a subclass that directly modifies path_info
(which is what I'm trying to do).