|
NAMEPOE::Component::Server::HTTPServer::ParameterParseHandler - Parse request parameters into contextSYNOPSISuse POE::Component::Server::HTTPServer::Handler; $server->handlers([ '/act/' => new_handler('ParameterParseHandler'), '/act/' => \&action_handler, ]); sub action_handler { my $context = shift; print "The 'foo' parameter is: ", $context->{param}->{foo}, "\n"; } DESCRIPTIONParameterParseHandler parses the request URI and body (for POST requests), and stores CGI parameters in the context. Parameters are stored as a hashref (name => value) in "$context->{param}".Stack this handler before handlers which need to process request parameters. TODOMultivalued parameters are currently not currently supported.Multipart submissions are currently not supported. AUTHORGreg Fast <gdf@speakeasy.net>COPYRIGHTCopyright 2003 Greg Fast.This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Visit the GSP FreeBSD Man Page Interface. |