Re: mod_perl -> application server

2017-04-06 Thread James Smith
You can use mod_perl properly and write your self a request handler - rather than using CGI scripts which handles the routing for you. I use this model exclusively on my servers... Most of the scripts are converted to action modules, which are dynamically compiled by the handler (which acts as

Re: mod_perl -> application server

2017-04-06 Thread Randolf Richardson
Hello Tosh. I stopped using CGI.pm a very long time ago after learning about the apreq2 library which provides access to the Apache2::Request module. Particularly, there is support for CGI parameters, including multiple file uploads from the same HTML form, and also the Cookie API:

mod_perl -> application server

2017-04-06 Thread Tosh Cooey
Hi, after the recent discussion here about Perl application servers I realized that the architecture I designed is probably better suited to usage with an application server than mod_perl. The basic structure of my mod_perl web application is: *.pl files are handled by ModPerl::Registry All *