HTTP::Body

HTTP::Body is a HTTP Body Parser.
Download

HTTP::Body Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Andy Grundman
  • Publisher web site:
  • http://search.cpan.org/~agrundma/Catalyst-Plugin-Session-Store-DBI-0.11/lib/Catalyst/Plugin/Session/Store/DBI.pm

HTTP::Body Tags


HTTP::Body Description

HTTP::Body is a HTTP Body Parser. HTTP::Body is a HTTP Body Parser.SYNOPSIS use HTTP::Body; sub handler : method { my ( $class, $r ) = @_; my $content_type = $r->headers_in->get('Content-Type'); my $content_length = $r->headers_in->get('Content-Length'); my $body = HTTP::Body->new( $content_type, $content_length ); my $length = $content_length; while ( $length ) { $r->read( my $buffer, ( $length < 8192 ) ? $length : 8192 ); $length -= length($buffer); $body->add($buffer); } my $uploads = $body->upload; # hashref my $params = $body->param; # hashref my $body = $body->body; # IO::Handle } Requirements: · Perl


HTTP::Body Related Software