Re: [us...@httpd] Handling multipart/form-data requests via Apache Module

2010-01-21 Thread Jain Sachinkumar
Hello Devraj, Thanks for the quick response. I am using C to write my module. Can you give me some guideline to decode the mime string? If the contents of multipart data is just text file, it is easy to read it and write to other file, but in case of zipped file or image file, how this is to be

Re: [us...@httpd] Handling multipart/form-data requests via Apache Module

2010-01-20 Thread Devraj Mukherjee
If you can access the POST data then it should be a matter of decoding the mime string and get the multipart data out. Are you writing your module in C, Perl or Python? On Thu, Jan 21, 2010 at 5:07 AM, Jain Sachinkumar wrote: > Hello, > > We are interested in logging HTTP requests that are sent

[us...@httpd] Handling multipart/form-data requests via Apache Module

2010-01-20 Thread Jain Sachinkumar
Hello, We are interested in logging HTTP requests that are sent to web applications hosted on the Apache web server. Eventually, as part of a larger research project, we would like to be able to replay these requests automatically on the web application. For this purpose, we have developed an Apac