Skip Menu |

This queue is for tickets about the JSON-RPC CPAN distribution.

Report information
The Basics
Id: 36495
Status: new
Priority: 0/
Queue: JSON-RPC

People
Owner: Nobody in particular
Requestors: mkanat [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.96
Fixed in: (no value)



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).