The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

Search results for "module:POE::Component::Server::HTTP"

POE::Component::Server::HTTP - Foundation of a POE HTTP Daemon River stage two • 8 direct dependents • 11 total dependents

POE::Component::Server::HTTP (PoCo::HTTPD) is a framework for building custom HTTP servers based on POE. It is loosely modeled on the ideas of apache and the mod_perl/Apache module. It is built alot on work done by Gisle Aas on HTTP::* modules and th...

RCLAMP/POE-Component-Server-HTTP-0.09 - 23 May 2006 20:47:37 UTC

POE::Component::Server::JSONRPC::Http - POE http based JSON-RPC server River stage one • 1 direct dependent • 1 total dependent

MCMIC/POE-Component-Server-JSONRPC-0.06 - 06 Dec 2017 13:40:01 UTC

POE::Component::Server::HTTP::KeepAlive - HTTP keep-alive support River stage one • 1 direct dependent • 1 total dependent

Handlers...

GWYN/POE-Component-Server-HTTP-KeepAlive-0.0307 - 10 Dec 2012 17:13:06 UTC

POE::Component::Server::HTTPServer - serve HTTP requests River stage one • 1 direct dependent • 1 total dependent

GREGFAST/POE-Component-Server-HTTPServer-0.9.2 - 20 May 2005 15:07:22 UTC

POE::Component::Server::SimpleHTTP - Perl extension to serve HTTP requests in POE. River stage two • 8 direct dependents • 10 total dependents

This module makes serving up HTTP requests a breeze in POE. The hardest thing to understand in this module is the HANDLERS. That's it! The standard way to use this module is to do this: use POE; use POE::Component::Server::SimpleHTTP; POE::Component:...

BINGOS/POE-Component-Server-SimpleHTTP-2.30 - 08 May 2023 11:11:49 UTC

lib/POE/Component/Server/HTTP/Response.pm River stage two • 8 direct dependents • 11 total dependents

RCLAMP/POE-Component-Server-HTTP-0.09 - 23 May 2006 20:47:37 UTC

lib/POE/Component/Server/HTTP/Request.pm River stage two • 8 direct dependents • 11 total dependents

RCLAMP/POE-Component-Server-HTTP-0.09 - 23 May 2006 20:47:37 UTC

lib/POE/Component/Server/HTTP/Connection.pm River stage two • 8 direct dependents • 11 total dependents

RCLAMP/POE-Component-Server-HTTP-0.09 - 23 May 2006 20:47:37 UTC

POE::Component::Server::HTTPServer::Handler - request handler interface River stage one • 1 direct dependent • 1 total dependent

This package defines the standard interface for request handlers. You can subclass this package to define custom behavior....

GREGFAST/POE-Component-Server-HTTPServer-0.9.2 - 20 May 2005 15:07:22 UTC

POE::Component::Server::SimpleHTTP::State River stage two • 8 direct dependents • 10 total dependents

BINGOS/POE-Component-Server-SimpleHTTP-2.30 - 08 May 2023 11:11:49 UTC

POE::Component::Server::SimpleHTTP::PreFork - PreForking support for SimpleHTTP River stage one • 1 direct dependent • 1 total dependent

BINGOS/POE-Component-Server-SimpleHTTP-PreFork-2.10 - 02 Jul 2013 20:53:30 UTC

POE::Component::Server::SimpleHTTP::Response - Emulates a HTTP::Response object, used for SimpleHTTP River stage two • 8 direct dependents • 10 total dependents

This module is used as a drop-in replacement, because we need to store the wheel ID + connection object for the response. Use $response->connection to get the SimpleHTTP::Connection object EXPORT Nothing....

BINGOS/POE-Component-Server-SimpleHTTP-2.30 - 08 May 2023 11:11:49 UTC

POE::Component::Server::SimpleHTTP::Connection - Stores connection information for SimpleHTTP River stage two • 8 direct dependents • 10 total dependents

This module simply holds some information from a SimpleHTTP connection. METHODS my $connection = POE::Component::Server::SimpleHTTP::Connection->new( $socket ); $connection->remote_ip(); # Returns remote address as a string ( 1.1.1.1 or 2000::1 ) $co...

BINGOS/POE-Component-Server-SimpleHTTP-2.30 - 08 May 2023 11:11:49 UTC

POE::Component::Server::HTTPServer::StaticHandler - serve static files River stage one • 1 direct dependent • 1 total dependent

StaticHandler provides a request handler which serves static filesystem resources relative to a given root. It may also be subclassed to handle interpreted requests based on filesystem resources such as parsed or templated pages. StaticHandler expect...

GREGFAST/POE-Component-Server-HTTPServer-0.9.2 - 20 May 2005 15:07:22 UTC

POE::Component::Server::HTTPServer::TemplateHandler - serve templated files River stage one • 1 direct dependent • 1 total dependent

GREGFAST/POE-Component-Server-HTTPServer-0.9.2 - 20 May 2005 15:07:22 UTC

POE::Component::Server::HTTPServer::NotFoundHandler - Generate 404 Responses River stage one • 1 direct dependent • 1 total dependent

NotFoundHandler generates and returns "404 Not Found" responses. This handler is, by default, set as the backstop handler that HTTPServer will invoke on a request if none of the other handlers have returned H_FINAL. If the "error_message" context att...

GREGFAST/POE-Component-Server-HTTPServer-0.9.2 - 20 May 2005 15:07:22 UTC

lib/POE/Component/Server/HTTP/KeepAlive/SimpleHTTP.pm River stage one • 1 direct dependent • 1 total dependent

GWYN/POE-Component-Server-HTTP-KeepAlive-0.0307 - 10 Dec 2012 17:13:06 UTC

POE::Component::Server::HTTPServer::BasicAuthenHandler - Basic HTTP Basic Authentication River stage one • 1 direct dependent • 1 total dependent

BasicAuthenHandler performs the necessary processing on requests to support HTTP Basic authentication. If the user-agent making the request supplies authentication information (via the "WWW-Authenticate" header), this handler extracts the supplied us...

GREGFAST/POE-Component-Server-HTTPServer-0.9.2 - 20 May 2005 15:07:22 UTC

POE::Component::Server::HTTPServer::ParameterParseHandler - Parse request parameters into context River stage one • 1 direct dependent • 1 total dependent

ParameterParseHandler 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 r...

GREGFAST/POE-Component-Server-HTTPServer-0.9.2 - 20 May 2005 15:07:22 UTC

POE - portable multitasking and networking framework for any event loop River stage three • 402 direct dependents • 539 total dependents

POE is a framework for cooperative, event driven multitasking and networking in Perl. Other languages have similar frameworks. Python has Twisted. TCL has "the event loop". POE provides a unified interface for several other event loops, including sel...

BINGOS/POE-1.370 - 23 Mar 2022 12:47:09 UTC
195 results (0.086 seconds)