Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re^2: Reading Raw data in CGI::Application

by derby (Abbot)
on Jan 05, 2007 at 13:32 UTC ( [id://593109]=note: print w/replies, xml ) Need Help??


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

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://593109]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (5)
As of 2024-03-30 08:49 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found