All,
I am getting the following error when submitting a form:
java.lang.IllegalArgumentException: The '_flowExecutionId' parameter was unexpectedly set to an array with values: array<String>['B08E8418-491A-2636-BF05-03FDD9567586', '87B3F5AA-4C78-9907-D260-EECD2B396899']; this is likely a view configuration error: make sure you submit a single string value for the '_flowExecutionId' parameter!
org.springframework.webflow.execution.ExternalEven t.verifySingleStringInputParameter(ExternalEvent.j ava:128)
org.springframework.webflow.execution.FlowExecutio nManager.getFlowExecutionId(FlowExecutionManager.j ava:502)
org.springframework.webflow.execution.FlowExecutio nManager.onEvent(FlowExecutionManager.java:399)
org.springframework.webflow.execution.FlowExecutio nManager.onEvent(FlowExecutionManager.java:384)
org.springframework.webflow.execution.servlet.Serv letFlowExecutionManager.handle(ServletFlowExecutio nManager.java:77)
org.springframework.webflow.mvc.FlowController.han dleRequestInternal(FlowController.java:137)
org.springframework.web.servlet.mvc.AbstractContro ller.handleRequest(AbstractController.java:128)
org.springframework.web.servlet.mvc.SimpleControll erHandlerAdapter.handle(SimpleControllerHandlerAda pter.java:44)
org.springframework.web.servlet.DispatcherServlet. doDispatch(DispatcherServlet.java:684)
org.springframework.web.servlet.DispatcherServlet. doService(DispatcherServlet.java:625)
org.springframework.web.servlet.FrameworkServlet.s erviceWrapper(FrameworkServlet.java:386)
org.springframework.web.servlet.FrameworkServlet.d oPost(FrameworkServlet.java:355)
javax.servlet.http.HttpServlet.service(HttpServlet .java:709)
javax.servlet.http.HttpServlet.service(HttpServlet .java:802)
com.opensymphony.module.sitemesh.filter.PageFilter .parsePage(PageFilter.java:118)
com.opensymphony.module.sitemesh.filter.PageFilter .doFilter(PageFilter.java:52)
No other forms in my application produce this error. The form setup is pretty straight forward. The one difference is in my FormAction, I am overriding setupForm to supply some referenceData to the form. Other than that, nothing special.
Some info about the app. At this point there isn't a whole lot to it. A couple of web flows that comprise a master-detail list, a cart and check out pages (this is where the error occurs).
The app is configured to use HttpSessionContinuations. That is all the really noteworthy stuff. BTW, I am using Spring WebFlows PR4.
Anyone run into this?
Thanks,
Dan


Reply With Quote