Re: Modify the body of a post request Multipar/form-data?

2010-06-11 Thread Eddy
Thanks, I like that ! The files is really very well documented !! I have already read your firefox extension for my module and now it's your apache extension !! Thanks a lot, Eddy On Fri, Jun 11, 2010 at 11:23 PM, Arturo 'Buanzo' Busleiman < bua...@buanzo.com.ar> wrote: > -BEGIN PGP SIGNED

Re: Modify the body of a post request Multipar/form-data?

2010-06-11 Thread Arturo 'Buanzo' Busleiman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Eddy wrote: > For illustrate my problem : > > I have register a filter like in deflate : Your problem reminds me of the time when I tried to get help from this list to implement mod_openpgp - I recommend you check out mod_transform.c off svn://sv

Re: Modify the body of a post request Multipar/form-data?

2010-06-10 Thread Eddy
For illustrate my problem : I have register a filter like in deflate : ap_register_input_filter(PerseusFilterName,perseus_in_filter, NULL, AP_FTYPE_CONTENT_SET); In httpd.conf : SetInputFilter PERSEUS So, I test with a crypted content and i hae in error.log : Perseus handler, Perseus header fo

Re: Modify the body of a post request Multipar/form-data?

2010-06-10 Thread Eddy
Yes i try to do the same thing but I have a problem, my filter begins too late and php has already process the data. I must do a error somewhere. Thanks for your help. Eddy On Thu, Jun 10, 2010 at 10:29 AM, Nick Kew wrote: > > On 10 Jun 2010, at 07:34, Eddy wrote: > > > How modify (decrypt data)

Re: Modify the body of a post request Multipar/form-data?

2010-06-10 Thread Nick Kew
On 10 Jun 2010, at 07:34, Eddy wrote: > How modify (decrypt data) the body content before all module ? That's what filters do. See mod_ssl for secure encryption. Or in your case since it's only the body content, see for example mod_deflate for a comparable task. -- Nick Kew

Modify the body of a post request Multipar/form-data?

2010-06-09 Thread Eddy
Hi, I have a Firefox module that encrypts the body content for a POST and GET request. The apache module must decrypt the content and send a crypted reply to the client. So, in my apache module, i have a filter to modify the body. For a POST x-www-form-urlencoded, the content is decrypt but in