Re: IPC::Open3 and MP

2010-01-20 Thread Torsten Förtsch
On Tuesday 19 January 2010 23:11:37 Randy J. Ray wrote: > I have some code that uses IPC::Open3, and I've discovered (the hard way) > that it doesn't work under MP2 and Apache 2.2.6. What is the "best > practices" way of doing this under MP2? > I don't see the problem. This code works here (curl o

Re: IPC::Open3 and MP

2010-01-20 Thread Clinton Gormley
On Tue, 2010-01-19 at 14:11 -0800, Randy J. Ray wrote: > I have some code that uses IPC::Open3, and I've discovered (the hard > way) that it doesn't work under MP2 and Apache 2.2.6. What is the > "best practices" way of doing this under MP2? I use IPC::Run, which works in mod_perl and non-mod_perl

Re: Adding args to a Request through InputFilter

2010-01-20 Thread Torsten Förtsch
On Wednesday 20 January 2010 11:40:43 Ivory wrote: > The fact is that in order to add this arg to the request I need to call > several Web services, crypt and decrypt datas and access the cookies I've > previously stored in the clients navigator. > yes. Cookies come in as HTTP headers. So $r->hea

Re: Adding args to a Request through InputFilter

2010-01-20 Thread Ivory
Thanks for your explanation concerning the request processing (I think it corresponds to the drawing I've seen http://perl.apache.org/docs/2.0/user/handlers/http_cycle.gif here ) I understand it much better now :) The fact is that in order to add this arg to the request I need to call several We