Re: Socket transfer from Apache httpd to a non-httpd process

2012-08-01 Thread Henrik Strand
Hi Suyambu, Take a look at the src for the following module: http://httpd.apache.org/docs/trunk/mod/mod_proxy_fdpass.html Regards, Henrik On Wed, 2012-08-01 at 09:04 +0200, suyambu wrote: Hi Henrik, I am trying some experiments in httpd2.2. I want to transfer the client socket to another

Re: Socket transfer from Apache httpd to a non-httpd process for https connections

2012-01-30 Thread Henrik Strand
Hi Ray, I'm using a slightly modified version of http://httpd.apache.org/docs/2.3/mod/mod_proxy_fdpass.html Regards, Henrik On Fri, 2012-01-20 at 17:12 +0100, Ray Morris wrote: I'm using a httpd module that does a socket transfer from the httpd process to another non-httpd process that is

Socket transfer from Apache httpd to a non-httpd process for https connections

2012-01-20 Thread Henrik Strand
Hi, I'm using a httpd module that does a socket transfer from the httpd process to another non-httpd process that is running on the same system. This works but currently only for http connections. I would now like to get it working for https connections as well. My thoughts are that httpd in

Infinite data stream from a non-HTTPD external process via HTTPD

2011-09-20 Thread Henrik Strand
Hi, I would like to send an infinite data stream from a non-HTTPD external process via HTTPD to the client connection. Both HTTP and HTTPS must be supported. Does HTTPD support this as of now? If not, how to implement such a module? Best Regards, Henrik

mod_proxy_fdpass + httpd-2.2.19

2011-08-03 Thread Henrik Strand
Hi, I'm trying to back-port Apache Module mod_proxy_fdpass to httpd-2.2.19, and building from source, but are getting the following error message when starting apachectl: httpd: Module (null) is not compatible with this version of Apache (found 0, need 20051115). Please contact the vendor for

Re: mod_proxy_fdpass + httpd-2.2.19

2011-08-03 Thread Henrik Strand
Hmm, but this is how the code looks like when I get the error that I posted. Is the module initialization done with the below code, or do I need to add that explicitly? Best Regards, Henrik On Wed, 2011-08-03 at 10:41 +0200, Nick Kew wrote: On 3 Aug 2011, at 09:27, Henrik Strand wrote

Re: Socket transfer from Apache httpd to a non-httpd process

2011-06-17 Thread Henrik Strand
Hi Eric, Great! Looks like just the thing I'm looking for. Thanks! Best regards, Henrik On Thu, 2011-06-16 at 17:46 +0200, Eric Covener wrote: On Thu, Jun 16, 2011 at 10:57 AM, Henrik Strand henrik.str...@axis.com wrote: Hi Ben, I've tried that but with no success. The problem (i.e

Socket transfer from Apache httpd to a non-httpd process

2011-06-16 Thread Henrik Strand
Hi, I need to transfer the socket descriptor for a client connection from the Apache httpd process to a non-httpd process running on the same system as Apache httpd, thus transferring the server response responsibility from Apache httpd to the non-httpd process (i.e., the Apache httpd process

Re: Socket transfer from Apache httpd to a non-httpd process

2011-06-16 Thread Henrik Strand
Hi Ben, I've tried that but with no success. The problem (i.e., that the connection is closed) still remains. Best Regards, Henrik On Thu, 2011-06-16 at 13:44 +0200, Ben Noordhuis wrote: On Thu, Jun 16, 2011 at 10:32, Henrik Strand henrik.str...@axis.com wrote: I've tried writing data