Return-Path: Delivered-To: apmail-myfaces-commits-archive@www.apache.org Received: (qmail 84789 invoked from network); 6 Sep 2007 11:49:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 6 Sep 2007 11:49:38 -0000 Received: (qmail 39220 invoked by uid 500); 6 Sep 2007 11:49:32 -0000 Delivered-To: apmail-myfaces-commits-archive@myfaces.apache.org Received: (qmail 39062 invoked by uid 500); 6 Sep 2007 11:49:32 -0000 Mailing-List: contact commits-help@myfaces.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "MyFaces Development" Delivered-To: mailing list commits@myfaces.apache.org Received: (qmail 39051 invoked by uid 99); 6 Sep 2007 11:49:32 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 06 Sep 2007 04:49:32 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 06 Sep 2007 11:49:37 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 196C61A983A; Thu, 6 Sep 2007 04:49:17 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r573231 - /myfaces/orchestra/trunk/core/src/site/xdoc/installation.xml Date: Thu, 06 Sep 2007 11:49:16 -0000 To: commits@myfaces.apache.org From: imario@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20070906114917.196C61A983A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: imario Date: Thu Sep 6 04:49:16 2007 New Revision: 573231 URL: http://svn.apache.org/viewvc?rev=573231&view=rev Log: description about configuring a timout per scope Modified: myfaces/orchestra/trunk/core/src/site/xdoc/installation.xml Modified: myfaces/orchestra/trunk/core/src/site/xdoc/installation.xml URL: http://svn.apache.org/viewvc/myfaces/orchestra/trunk/core/src/site/xdoc/installation.xml?rev=573231&r1=573230&r2=573231&view=diff ============================================================================== --- myfaces/orchestra/trunk/core/src/site/xdoc/installation.xml (original) +++ myfaces/orchestra/trunk/core/src/site/xdoc/installation.xml Thu Sep 6 04:49:16 2007 @@ -193,6 +193,22 @@ If your application does not have to deal with persistence, and you would still like to use the conversation scope you can delete the advices from this configuration. +
+ Optionally you can configure the timeout used to automatically end a conversation. +
+ The timeout property accepts a numeric value which means a timespan + in minutes. For example: +
+<bean class="org.apache.myfaces.orchestra.conversation.spring.SpringConversationScope">
+	<property name="timeout" value="35" />
+	<property name="advices">
+		<list>
+			<ref bean="persistentContextConversationInterceptor"/>
+		</list>
+	</property>                                             s
+</bean>
+						
+ This ends a conversation after 35 minutes.
  • 3. the "entity manager" manager