Adding args to a Request through InputFilter

2010-01-19 Thread Ivory
OUT $f->r->args(),"\n"; #No argument $f->r->args("userId=10"); print STDOUT $f->r->args(),"\n"; #Returns the arg I passed } In a running perl script on my apache the $r->args() doesn't return anything. As I'm a newbie using mod_per

Re: Adding args to a Request through InputFilter

2010-01-20 Thread Ivory
veral Web services, crypt and decrypt datas and access the cookies I've previously stored in the clients navigator. Is it also possible in this type of handler? (I've already tested all these actions in an InputFilter and it works fine). Thanks again. Ivory Torsten Foertsch wrote: >

Re: Adding args to a Request through InputFilter

2010-01-22 Thread Ivory
Hi , I've manage to setup a PerlFixupHandler, and it works perfectly well for adding / deleting headers and args. But it seems like this process is pretty time-consuming... Any known issue about that? Ivory Torsten Foertsch wrote: > > On Wednesday 20 January 2010 11:40:43

Re: Adding args to a Request through InputFilter

2010-01-28 Thread Ivory
You were right, after reviewing my code it works much better :) Thanks again. Ivory Torsten Foertsch wrote: > > If "pretty time-consuming" means a few microseconds then yes, it may be > modperl. > > If more, it's your code. > > To figure out how much