Re: Info required

2001-09-07 Thread Jeremy Howard
Medi Montaseri wrote: Having said thatI recommend Writing Apache Modules with Perl and C known as the 'eagle book'. See Chapter 3, 'The Apache Module Architecture and API' and for a quick feeling, see Figure 3-3, page 60, The Request Loop. Of course I'm new to mod_perl, so if Pokymon

Info required

2001-09-06 Thread Murugan K
Hi In the CGI environment , After getting the request from the client , based on the request the web server will load the cgi2perl module ( may be someother name) to act as interface between perl and Webserver. The cgi2perl will get the data from perl interpreter and give back to

Re: Info required

2001-09-06 Thread Stas Bekman
On Thu, 6 Sep 2001, Murugan K wrote: Hi In the CGI environment , After getting the request from the client , based on the request the web server will load the cgi2perl module ( may be someother name) to act as interface between perl and Webserver. The cgi2perl will get the data from

Re: Info required

2001-09-06 Thread Ken Williams
Hi, It sounds like you want to read the source code. =) Download mod_perl (or perhaps you already have) and read the source to Apache.pm, mod_perl.pm, and so on, until you understand everything you want to. Be warned, it's not easy reading. There aren't many documents describing the

Re: Info required

2001-09-06 Thread Medi Montaseri
Maybe this abstraction do the job mod_perl packages (or classes) binds with HTTP server process. Basically there is a perl interpreter loaded along with HTTP code and running in memorythe customer of mod_perl then loads additional perl code to alter the behavior of the HTTP server. The