1Maypole::HTTPD(3) User Contributed Perl Documentation Maypole::HTTPD(3)
2
3
4
6 Maypole::HTTPD - Stand alone HTTPD for running Maypole Applications
7
9 use Maypole::HTTPD;
10 my $httpd=Maypole::HTTPD->new(module=>"BeerDB");
11 $httpd->run();
12
14 This is a stand-alone HTTPD for running your Maypole Applications.
15
16 new
17 The constructor. Takes a hash of arguments. Currently supported:
18 port - TCP port to listen to
19 module - Maypole application Module name.
20
21 module
22 Accessor for application module.
23
24 handle_request
25 Handles the actual request processing. Should not be called directly.
26
28 Maypole
29
31 Marcus Ramberg, <marcus@thefeed.no<gt> Based on Simon Cozens' original
32 implementation.
33
35 Copyright 2004 by Marcus Ramberg
36
37 This library is free software; you can redistribute it and/or modify it
38 under the same terms as Perl itself.
39
40
41
42perl v5.32.0 2020-07-28 Maypole::HTTPD(3)