in reply to Re: Reading Raw data in CGI::Application
in thread Reading Raw data in CGI::Application

++ and thanks for the clue about CGI::Application::Plugin::JSON (I hadn't seen that). I've been using JSON but instead of header type text/plain, I've been using application/json (which is outlined in the rfc).

-derby

Replies are listed 'Best First'.
Re^3: Reading Raw data in CGI::Application
by msubbareddy (Initiate) on Aug 22, 2012 at 00:44 UTC
    Quick solution <if anybody still needed on sending json for runmode>
    sub send_json_data: Runmode { my $self = shift; $self->header_add(-type=>"application/json"); ... }
    OR refer this inside of CGI::Application::Plugin::JSON import() >> _send_headers() should take care of it.. though, its not taking care of for above runmode to return json data.
    sub _send_headers { my $self = shift; my $private = $self->param('__CAP_JSON') || {}; if( defined $private->{header} ) { $self->header_add( '-x-json' => $self->json_header_string ); } if( defined $private->{json_body} ) { $self->header_add('-type' => 'application/json'); } elsif ( defined $private->{json_callback} ) { $self->header_add('-type' => 'text/javascript'); } }