This is what you need in cas-servlet.xml I believe:

<bean
                id="loginController"
                class="org.springframework.webflow.executor.mvc.FlowController"
                p:flowExecutor-ref="flowExecutor"

                p:defaultFlowId="login-webflow">
                <property
                        name="argumentHandler">
                        <bean 
class="org.springframework.webflow.executor.support.RequestParameterFlowExecutorArgumentHandler"

                                p:flowExecutionKeyArgumentName="lt"
                                p:defaultFlowId="login-webflow" />
                </property>
        </bean>

        <flow:executor id="flowExecutor" registry-ref="flowRegistry"
repository-type="client">

                <flow:execution-attributes>
                        <flow:alwaysRedirectOnPause value="false"/>
                </flow:execution-attributes>
        </flow:executor>

        <flow:registry id="flowRegistry">

                <flow:location path="/WEB-INF/login-webflow.xml"/>
        </flow:registry>

Some of that should be in there already (I just copied everything)




On Tue, Sep 29, 2009 at 10:59 AM, Ryan Andreasen
<[email protected]>wrote:

>
> I have seen Scott talk about this in a few of his posts.  Does anyone know
> where this is set in the cas-servlet.xml?  Is it the section that says
> "uncomment this to enable sending PageRequest events"?  Thanks.
> --
> View this message in context:
> http://www.nabble.com/Reconfiguring-Spring-Web-Flow-to-store-its-information-as-part-of-the-request-tp25664749p25664749.html
> Sent from the CAS Users mailing list archive at Nabble.com.
>
>
> --
> You are currently subscribed to [email protected] as:
> [email protected]
> To unsubscribe, change settings or access archives, see
> http://www.ja-sig.org/wiki/display/JSG/cas-user
>

-- 
You are currently subscribed to [email protected] as: 
[email protected]
To unsubscribe, change settings or access archives, see 
http://www.ja-sig.org/wiki/display/JSG/cas-user

Reply via email to