Return-Path: Delivered-To: apmail-cocoon-users-archive@www.apache.org Received: (qmail 21930 invoked from network); 9 Aug 2004 10:53:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 9 Aug 2004 10:53:19 -0000 Received: (qmail 20184 invoked by uid 500); 9 Aug 2004 10:53:09 -0000 Delivered-To: apmail-cocoon-users-archive@cocoon.apache.org Received: (qmail 20156 invoked by uid 500); 9 Aug 2004 10:53:09 -0000 Mailing-List: contact users-help@cocoon.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: users@cocoon.apache.org Delivered-To: mailing list users@cocoon.apache.org Received: (qmail 20141 invoked by uid 99); 9 Aug 2004 10:53:08 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=RCVD_BY_IP,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received: from [80.91.224.249] (HELO main.gmane.org) (80.91.224.249) by apache.org (qpsmtpd/0.27.1) with ESMTP; Mon, 09 Aug 2004 03:53:08 -0700 Received: from list by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 1Bu7m1-0003G8-00 for ; Mon, 09 Aug 2004 12:53:06 +0200 Received: from 195.6.79.173 ([195.6.79.173]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 09 Aug 2004 12:53:01 +0200 Received: from olivier.billard.cocoon by 195.6.79.173 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 09 Aug 2004 12:53:01 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: users@cocoon.apache.org From: Olivier Billard Subject: Re: flowscript - pipeline has already been processed... Date: Mon, 09 Aug 2004 12:53:24 +0200 Lines: 57 Message-ID: References: <1092041795.41173c43286fe@imp3-q.free.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: 195.6.79.173 User-Agent: Mozilla Thunderbird 0.6 (Windows/20040502) X-Accept-Language: en-us, en In-Reply-To: <1092041795.41173c43286fe@imp3-q.free.fr> Sender: news X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Hi, If you're using the flow, don't forget to set a return after a cocoon.sendPage(). Otherwise, the flow continues and may meet a cocoon.sendPage again, causing this error. if (condition) { cocoon.sendPage(page1); } // condition did not match cocoon.sendPage(page2) if (condition) { cocoon.sendPage(page1); // exit the function return; } // condition did not match cocoon.sendPage(page2) HTH, -- Olivier Billard defe@free.fr wrote: > hi, > > i have an IllegalStateException when trying to aggregate a flowscript response > with other xml parts. It says "pipeline has already been processed for this > request". > > > > .... > > > where, > > > > > > > ... > > > > > what does "the pipeline has already been processed for this request" means > exactly? > > thanks. --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@cocoon.apache.org For additional commands, e-mail: users-help@cocoon.apache.org