Matt Robinson wrote:

Hello.

What does this message mean and what do I need to do to fix it.  It seems to 
have something to do with the Cocoon Flow Continuation...

I am calling several pipelines (one at a time) in the same flowscript and using 
Cocoon Forms to pass data to and from the Java Bean handing the flow state.  
The first two pages display fine.  The third page will not display.....

The point is to know how you call these several pipelines. For one given request, only one pipeline can have its output directed to the browser.

Practically, this means that a flowscript can only call sendPage, sendPageAndWait, redirectTo or sendStatus only once for a request. You can however call any number of pipelines using cocoon.processPipelineTo or the PipelinesUtil class.

A frequent cause for this message is about forgetting that only sendPageAndWait suspends the script, and that all other continue execution. So check your control structures to see if sendPage is called twice for a single request.

Sylvain

--
Sylvain Wallez                        Anyware Technologies
http://people.apache.org/~sylvain     http://www.anyware-tech.com
Apache Software Foundation Member     Research & Technology Director


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to