Re: Input Filter reading Body

2006-10-23 Thread Christian Verdelli
I simply changed  this piece of code : char *data[4096]; memset (data,0,4096);  with this :    char *data;  data = "" 4096) ; and now it works fine, what the hell is this !!?? :-DThanks anyway..On Oct 20, 2006, at 6:35 PM, Christian Verdelli wrote:Well,actually i took my piece of code

Input Filter reading Body

2006-10-20 Thread Christian Verdelli
- -- Hi,im writing my first simple input filters ; i need it to debug the request body (content of POST) coming to my Web Server before is handledby a third party contect handler module (which corrupt data).I simply want to print out the content of the body request sent by the client . I wrote

Re: Input Filter reading Body

2006-10-20 Thread Christian Verdelli
this \xa7\x0fe instead of name=value of the post?? thanks. Nick Kew wrote: On Friday 20 October 2006 16:03, Christian Verdelli wrote: - -- Hi, im writing my first simple input filters ; i need it to debug the request body (content of POST) coming to my Web Server before is handled