Re: question on sub-requests

2012-11-13 Thread gAzZaLi
Sure thing, anytime. You raise valid points and are in the best position to know what kind of tradeoffs to make. Simpler handler requires less processing and memory but increased number of requests. I said what I did because I'm working on a single page app. with heavy use of Javascript (Go

Re: question on sub-requests

2012-11-13 Thread André Warnier
Torsten Förtsch wrote: On 11/12/2012 06:19 PM, André Warnier wrote: In response to some request URLs, I have to compose a response structured as follows : - a html frameset document with two frames - in the 1st frame, the result of another HTTP request to the same Apache server. This URI of t

Re: apache2 + mod_perl + Catalyst + Session = Segmentation fault

2012-11-13 Thread Ævar Arnfjörð Bjarmason
On Tue, Nov 13, 2012 at 3:48 PM, demerphq wrote: > On 13 November 2012 15:23, Ævar Arnfjörð Bjarmason wrote: >> On Sat, Sep 29, 2012 at 1:08 PM, Stefan Profanter >> wrote: > > Looks like you are using Storable to stream out cookies? Looks like > something in there is causing Stor

Re: apache2 + mod_perl + Catalyst + Session = Segmentation fault

2012-11-13 Thread demerphq
On 13 November 2012 15:23, Ævar Arnfjörð Bjarmason wrote: > On Sat, Sep 29, 2012 at 1:08 PM, Stefan Profanter > wrote: >>> > >>> > Looks like you are using Storable to stream out cookies? Looks like >>> > something in there is causing Storable to puke. I see things like >>> > array_call, store_

Re: apache2 + mod_perl + Catalyst + Session = Segmentation fault

2012-11-13 Thread Ævar Arnfjörð Bjarmason
On Sat, Sep 29, 2012 at 1:08 PM, Stefan Profanter wrote: >> > >> > Looks like you are using Storable to stream out cookies? Looks like >> > something in there is causing Storable to puke. I see things like >> > array_call, store_blessed, store_hash... So I'm guessing your passing >> > Storable s

Re: question on sub-requests

2012-11-13 Thread Torsten Förtsch
On 11/12/2012 06:19 PM, André Warnier wrote: > In response to some request URLs, I have to compose a response > structured as follows : > > - a html frameset document with two frames > - in the 1st frame, the result of another HTTP request to the same > Apache server. > This URI of this HTTP req

Re: question on sub-requests

2012-11-13 Thread André Warnier
Hi. Once again, thanks. Your javascript/onLoad idea sounds good, and would fit my needs. I'll give it a spin. There is one thing that bothers me (and it is the same in my own solution outlined below) : what previously was one HTTP request and one response, now becomes 3 HTTP requests and 3 r