how to add bucket brigade to request via a input filter

2007-10-15 Thread newgaton new
Hi guys! My connection-level input filter needs to replace a request with another request. This "another request" is contained, in encrypted form, in the BODY of the POST request I'm going to replace. I've been able to use ap_save_brigade, and move all the request's bucket brigades to a ctx bucke

how to add bucket brigade to request via a input filter

2007-10-15 Thread newgaton new
hi guys ! i have a problem, I want to add some http header to the request data via the filter, but I find a http header data will be insert to a bucket brigade not to a bucket, so I can't add the http header, for example Content-Length. so if I want to add the Content-Length to the request data, I

Re: [mp2] how to add data to posted form?

2007-10-07 Thread newgaton new
my pleasure for receiving your reply! Maybe I didn't describe clearly the question . now I give a example to show my question. First, browser post a form(the method of form is POST) data, and it include some input element. . client fill some data to the element,for example "1234". Second, the

Re: [mp2] how to add data to posted form?

2007-10-06 Thread newgaton new
2007/10/7, Perrin Harkins <[EMAIL PROTECTED]>: > > On 10/6/07, newgaton new <[EMAIL PROTECTED]> wrote: > > i have a question. i am coding a program. i must change / add some > > data to posted form from browser . > > What are you trying to do? Using the

how to add data to posted form?

2007-10-06 Thread newgaton new
Hi, i have a question. i am coding a program. i must change / add some data to posted form from browser . I can use Apache::Request::Param for the job In mod_perl 1.3, but I did not find any interface to fix the problem. I hope some one can help me !!!

[mp2] how to add data to posted form?

2007-10-06 Thread newgaton new
Hi, i have a question. i am coding a program. i must change / add some data to posted form from browser . I can use Apache::Request::Param for the job In mod_perl 1.3, but I did not find any interface to fix the problem. I hope some one can help me !!!