Re: submit-data and chained handlers

2001-12-17 Thread Geoffrey Young
Perrin Harkins wrote: Apache::RequestNotes don't work because Apache::Registry expect to read the POST/PUT-data from STDIN. It's important that the cgi-scripts run unmodified and without any notice of their unnaturally environment. I don't think there's any way around the fact

Re: submit-data and chained handlers

2001-12-16 Thread Gerald Menzel
e.g. $r-read($in,$r-header_in('Content-length')); or $in=$r-content(); give's my handler the data, but unfotunately exclusive - so the data don't reaches Apache::Registry and the cgi-script. Any suggests? Apache::RequestNotes. - Perrin No, Apache::RequestNotes doesn't solve my

Re: submit-data and chained handlers

2001-12-16 Thread Perrin Harkins
Apache::RequestNotes don't work because Apache::Registry expect to read the POST/PUT-data from STDIN. It's important that the cgi-scripts run unmodified and without any notice of their unnaturally environment. I don't think there's any way around the fact that you can only read the content

Re: submit-data and chained handlers

2001-12-12 Thread Gerald Menzel
e.g. $r-read($in,$r-header_in('Content-length')); or $in=$r-content(); give's my handler the data, but unfotunately exclusive - so the data don't reaches Apache::Registry and the cgi-script. Any suggests? Apache::RequestNotes. - PerrinI use Win2k and it seems there is no Win32 port

Re: submit-data and chained handlers

2001-12-12 Thread Per Einar
I use Win2k and it seems there is no Win32 port of libapreq!? Exists any other way? Check out http://theoryx5.uwinnipeg.ca/ppmpackages/ , there are a number of PPD packages (to use with ActiveState ppm) there, by Randy Kobes. Use ppm install

submit-data and chained handlers

2001-12-10 Thread Gerald Menzel
Hi, I have two stacked content handlers in a pipeline. At first Apache::Registry and as the second my own handler for parsing Apache::Registry's output of ordinary Perl scripts. Works fine. But I want to catch everything that passes in or out Apache::Registry - also the data of submit-forms sent

Re: submit-data and chained handlers

2001-12-10 Thread Perrin Harkins
e.g. $r-read($in,$r-header_in('Content-length')); or $in=$r-content(); give's my handler the data, but unfotunately exclusive - so the data don't reaches Apache::Registry and the cgi-script. Any suggests? Apache::RequestNotes. - Perrin