Re: [modperl 1.27] Problem regarding Perl*Handler and the HTTPrequest line

2002-12-24 Thread Nick Tonkin
On Tue, 24 Dec 2002 [EMAIL PROTECTED] wrote: Hi all Apologise if I have posted to the wrong list. I am quite new to the Perl*Handlers. I am wondering if it is possible to write a handler which parses the very first header line, say.. telnet localhost http Trying 127.0.0.1 Connected

Re: [modperl 1.27] Problem regarding Perl*Handler and the HTTPrequest line

2002-12-24 Thread Rodney Broom
On Tue, 24 Dec 2002 [EMAIL PROTECTED] wrote: I am wondering if it is possible to write a handler which parses the very first header line, say.. No, it's not possible. (Unless I'm really missing something) where the line followed by [C] stands for the line sent by the client, and the

Re: [modperl 1.27] Problem regarding Perl*Handler and the HTTPrequest line

2002-12-24 Thread corn
where the line followed by [C] stands for the line sent by the client, and the line followed by [S] is the line sent by some perl module. It sounds to me as though you want to use Apache as a network service framework. Not a bad idea, but Apache already stands on a set protocol. Is this

Re: [modperl 1.27] Problem regarding Perl*Handler and the HTTPrequest line

2002-12-24 Thread Rodney Broom
From: [EMAIL PROTECTED] In fact I would like to write some little scripts to talk with the internals of Apache over port 80... By the internals, do you mean asking Apache about what it's doing and sending it new directives? If all you need to do is catch particular requests, then Nick

Re: [modperl 1.27] Problem regarding Perl*Handler and the HTTPrequest line

2002-12-24 Thread corn
if my 'new http method' you mean something other that GET, POST, PUT, etc then no, you cannot (in Apache 1.3, at least). yea. you got exactly what I mean!! :D I want to put this non HTTP thing together with some other Apache::Registry scripts on the same port 80 with modperl 1.27 and Apache