Results 1 to 2 of 2

Thread: redirectOnPause problem

  1. #1
    Join Date
    Oct 2005
    Location
    Mobile, AL
    Posts
    345

    Default redirectOnPause problem

    I am using SWF using continuations and I have set the property redirectOnPause=true on the flowExecutor bean definition.

    When I do this it redirects the url as expected but I lose the .act along with query string properties.

    For example, my flow url is as follows:

    http://localhost:8075/Web2/sponsor/c...nd.act?pid=153

    When the redirection occurs, it is redirecting to

    http://localhost:8075/Web2/sponsor/c...0-AA4EAF63B7E2

    I am losing the .act portion and the query parameter pid=153.

    Note: I am using REST-Style anchors and am running version 1.0 RC3.

    Does anyone know why it would do that?
    Last edited by MartyJones; Aug 1st, 2006 at 06:59 PM.

  2. #2

    Default

    Are you setting the argumentExtractor in your flowController? For instance:

    Code:
    <bean id="flowController" class="org.springframework.webflow.executor.mvc.FlowController">
    	<property name="flowExecutor" ref="flowExecutor"/>
    	<property name="argumentExtractor">
    		<bean class="org.springframework.webflow.executor.support.RequestPathFlowExecutorArgumentExtractor"/>
    	</property>
    </bean>

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •