[FLOW] sendPageAndWait continuation storage

2006-03-03 Thread Bruyn Bill
When a continuation is created by sendPageAndWait, where is it stored? Can I access it with flowscript or in the sitemap? I have a scenario similar to the 'flowscript continuation from external reply' problem discussed recently. What I'm trying to do is iterate over a list, and for each item in i

Re: [FLOW] sendPageAndWait continuation storage

2006-03-03 Thread Simone Gianni
Hi Bruyn, there is a continuation input module, that you can use inside the sitemap to pass any continuation information to any object (an xsl, a flow, a custom object of yours). For example, to pass the continuation id as a parameter to an XSLT you can simply write : The syntax of the

RE: [FLOW] sendPageAndWait continuation storage

2006-03-03 Thread Bruyn Bill
t: Friday, March 03, 2006 4:52 PM > To: users@cocoon.apache.org > Subject: Re: [FLOW] sendPageAndWait continuation storage > > > Hi Bruyn, > there is a continuation input module, that you can use inside the > sitemap to pass any continuation information to any object (an xsl,

Re: [FLOW] sendPageAndWait continuation storage

2006-03-03 Thread Simone Gianni
y, March 03, 2006 4:52 PM To: users@cocoon.apache.org Subject: Re: [FLOW] sendPageAndWait continuation storage Hi Bruyn, there is a continuation input module, that you can use inside the sitemap to pass any continuation information to any object (an xsl, a flow, a custom object of yours). For example,

Re: [FLOW] sendPageAndWait continuation storage

2006-03-04 Thread Leszek Gawron
Hello, First of all you problem shouldn't be solved the way you're trying it to. Bruyn Bill wrote: When a continuation is created by sendPageAndWait, where is it stored? Can I access it with flowscript or in the sitemap? I have a scenario similar to the 'flowscript continuation from external r

RE: [FLOW] sendPageAndWait continuation storage

2006-03-04 Thread Bruyn Bill
sult.pdf", {pdf: output.getOutputContent()}); } From: Leszek Gawron [mailto:[EMAIL PROTECTED] Sent: Sat 3/4/2006 8:07 AM To: users@cocoon.apache.org Subject: Re: [FLOW] sendPageAndWait continuation storage Hello, First of all you problem shouldn't

Re: [FLOW] sendPageAndWait continuation storage

2006-03-04 Thread Leszek Gawron
Bruyn Bill wrote: Actually, I started that way. The problem I have is that theFunctionBehindFormsServerFlow needs the continuation id created by sendPageAndWait, before it sends the page. So function otherFunction( dom ) { //var data = processMyDom( dom ); //cocoon.sendPag

RE: [FLOW] sendPageAndWait continuation storage

2006-03-04 Thread Bruyn Bill
proach I outlined here originally? Seems clean enough to me (though I haven't gotten to try it yet)... From: Leszek Gawron [mailto:[EMAIL PROTECTED] Sent: Sat 3/4/2006 11:43 AM To: users@cocoon.apache.org Subject: Re: [FLOW] sendPageAndWait continuation stora