Spring Webflow is a web-app framework which helps to define the page navigation rules in a intuitive, and reusable way.

learn more… | top users | synonyms

0
votes
1answer
14 views

Get User information in pages which are not part of any flow in Spring webflow

In my application i am using Spring Security, Spring Web Flow and JSF. I have defined flows and can extract user information using #{currentUser.name} in pages which are part of flow. But there are ...
0
votes
1answer
17 views

spring web flow enable scopes

Spring web flow provides additional bean scopes like flow, conversation, flash etc. I can define flow scope beans in flow.xml using var or i can set values to new scoped variables. How i can define it ...
0
votes
0answers
21 views

when spring webflow serialize objects

We have an app based on spring webflow, according to the Spring manual, we need to make every class we put in flowScope serializable. and in our app, basically almost every class need to be ...
0
votes
1answer
68 views

Spring Webflow org.springframework.expression.spel.SpelEvaluationException: EL1009E - cannot be set on null

my code: categories-flow.xml <?xml version="1.0" encoding="UTF-8"?> <flow xmlns="http://www.springframework.org/schema/webflow" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
0
votes
1answer
48 views

Spring Webflows locale detected incorrectly as en_US, but evidence suggests locale is changed

I have 4 available locales in my project: ar_AE, en_GB, en_US, ur_PK. The default set up in my localeResolver is en_GB. No matter what I set my current locale to, when I enter a webflow, the EL ...
1
vote
1answer
52 views

Spring webflow URI mapping to flow ID containing slash (“/”)

We have a requirement to handle login and signup slightly differently within a subsection of our website. We need separate flows for each of the following URIs. /login /signup /subsection/login ...
0
votes
1answer
59 views

Terminate actual spring web flow execution

is it possible to determine the actual running flow in a spring mvc context and terminate it ? The reason why I'm asking is, that in my shop web app the whole checkout process is a web flow but the ...
0
votes
0answers
52 views

Exception handler does not catch an exception

I have an excepton handler at the webflow level <exception-handler bean="webflowExceptionHandlerBean"/> Also I have two different flows, Flow A and Flow B. Flow B is a sub-flow of Flow A. ...
0
votes
0answers
297 views

Spring Webflow Cannot call sendRedirect() after the response hasbeen committed

I have and webapplication based in Spring Webflow and Primefaces, and sometimes when I execute the screen I get the IllegalStateException ... but is really weird since we are not making a call before ...
0
votes
2answers
78 views

Need to login/ register during Spring Web-Flow

I have a web flow defined with 4 steps in it. I have also spring security configured properly. In the last step, I need to save the user's order which requires a user account. Therefore, I need to ...
-1
votes
1answer
55 views

using Grails 2 Web Flow plugin for a shared nothing architecture [closed]

I am using grails 2.2 for a large, non trivial web application, with “shared nothing” approach. I find Grails plugin -> grails Web flows very useful , however I cannot store the conversation state in ...
1
vote
1answer
132 views

Row selection and data processing in rich:extendedDataTable

I am working with JSF2.0, Spring-Webflow2.3.1 and richfaces4.2.3. I have got a rich:extendedDataTable which will show a list of data(There is no button present inside it). I need to implement -> ...
0
votes
1answer
84 views

prevent multiple submit in spring webflow

we are using webflow as we have multiple forms to fill before submitting . On final page when user submit all database transaction happens . So i want user to prevent from multiple submit . Is there a ...
0
votes
1answer
73 views

Spring webflow unit test with spring security on

I'm trying to test a webflow controller with spring security on: <action-state id="search"> <secured attributes="ROLE_ADMIN"/> ... </action-state> I'm using ...
0
votes
1answer
221 views

Spring webflow redirect not working for Portlets

I have to implement inter-portlet communication functionality. The functionality is as below: 1) user clicks on "save as" link on "createStep1.jsp". 2) the below mentioned webflow saveDraftStep1 is ...
0
votes
1answer
194 views

Can't populate the right side of RichFaces 4 pickList backed by Spring Webflow managed Beans

I am in the middle of a migration from Richfaces 3.3.3 to Richfaces 4.3.0, which called for a JSF upgrade from 1.2 to 2.1. We are also using Spring Webflow 2.3.2 (upgraded from 2.1.1) for conversation ...
0
votes
0answers
86 views

Spring WebFlow ajax call from FormAction

How can I handle ajax request using FormAction class. I have found that it is possible to render a part of page when handling an Ajax event using " ". I wonder whether it is possible to return json. ...
2
votes
2answers
303 views

Spring Web Flow - Multiple forms on page - validating correct form

I am using Spring Web Flow 2.3 and I have a page that has two forms on it that transition to different places depending on which is submitted. To accomplish this, I have one composite model object for ...
2
votes
1answer
294 views

Spring *{} fields in a thymeleaf ajax tile

I wonder if anyone can help. I am working on a Spring/Webflow/Tiles/Thymeleaf project. All is going reasonably well. We have tiles which represent the data entry forms, typically like this: ...
1
vote
1answer
122 views

Invalidating or discarding history is not working after state validation in Spring Web Flow 2

I've configured the backtracking in my flow in the following way: <view-state id="step1" model="step1Model" > <transition on="next" to="step2" history="invalidate"> </transition> ...
0
votes
1answer
356 views

Spring Web Flow 2 end state

I have a simple question. I am working out a simple application with few tabs. Application uses few external services to query for data and displays it for better data mining experience. Also I ...
1
vote
0answers
284 views

primefaces remotecommand partial process

I am working on webflow 2.3.1, primefaces 3.4.2 project. As you see, i tried to update selectOneMenu according to parent city as shown at example from primefaces showcase. However i used ...
1
vote
1answer
274 views

Pass bean object from MVC to Spring WebFlow

I need to pass a bean object from MVC to webFlow. Currently, I am achieving it this way: Storing my bean object as request attribute in controller. Forwarding to flow. Accessing the object from ...
0
votes
1answer
384 views

Can Thymeleaf access the Spring servletContext?

I wonder if anyone can help. We are in the process of converting a Spring Webflow 2 application from using a jsp based view layer, to a Thymeleaf based view. For this most part this is OK, but now ...
-1
votes
1answer
292 views

Is it possible to use if tag in <on-entry> state in spring webflow

I have written the flow as below in spring web-flow 2. But I get error as invalid content. <on-entry> <decision-state="check"> <if test="some condition" then="x state" else="y ...
2
votes
1answer
127 views

Calling flowRedirect after returning from subflow throws exception

<subflow-state id="callingSubflow" subflow="cz/fe/ui"> <transition on="finish" to="goToResult"/> </subflow-state> <end-state id="goToResult" ...
1
vote
1answer
483 views

Thymeleaf Spring weblow ajax

I am trying to make my first ajax call / response with Spring webflow, and response rendered with thymeleaf. I have used thymeleaf example from their pdf Thymeleaf + Spring 3. flow config: ...
0
votes
1answer
128 views

Spring Webflow 2 and bookmarkable URLs

Currently due to the Post/Redirect/Get pattern all flow urls are something like <site_url>/flow_name?execution=? and input GET parameters are not preserved. Thus the users can't copy the url, or ...
0
votes
1answer
83 views

transit to next page from casGenericSuccess page using link in jasing cas single sign on

I want to navigate to my added jsp page from casGenericSuccess.jsp but I am not able to transit to next page using hyperlink. What i did is: changes in login-webflow.xml <view-state ...
0
votes
0answers
72 views

Spring webflow: How to configure Multiple Flow Executors

I am trying to configure multiple flow executors for my project as I need one set of flows with 'always-redirect-on-pause' attribute as false and another as true. I have tried searching, skimming ...
0
votes
1answer
345 views

Primefaces RowEditor does not work with Spring Webflow

I have Primefaces DataTable with in-cell editing: <p:dataTable id="docsTable" editable="true" value="#{customer.docs}" var="doc" style="border-width:0px;" > <p:growl ...
0
votes
1answer
80 views

Spring webflow loses values on same page

I'm new to Spring Webflow, and I'm trying to create a flow where it either saves the model and then moves to the next page, or saves the model and stays on the same page. Moving onto the next page is ...
1
vote
1answer
426 views

Spring Message Resource Bundles - Suitable for white labelling and versioning?

I wonder if anyone can help. We are putting together a Spring MVC & Webflow app, and want to put all screen text etc in a database backed message resource bundle. I've got a simple implementation ...
1
vote
0answers
119 views

Unable to launch a Spring web flow 2.3.1 (Spring 3.2.0 + JSF 2.0)

I am unable to launch flow with Spring web flow 2.3.1 + Spring 3.2.0 + JSF 2.0. Spring is getting initialized, but when I am trying to load my flow, nothing happens. I have attached a ...
2
votes
1answer
358 views

Reading query strings from GET inside Spring web flow

Hy. Im continuing a spring web flow, using execution key. (an order paypal payment) and would need to read query strings from get. &TokenID and &PayerID this is how the URL looks like where ...
1
vote
1answer
111 views

spring webflow variable serialization

I have flow that serves processing for three different entities. Thus I have parent flow definition with common flow states and in concrete flow definition I extend that flow with real data and action ...
1
vote
1answer
78 views

Conversational flow application implementation

Does spring web flow used widely in industry for a conversational flow behavioral application or a wizard kind of application. The main purpose of going such application is to reduced the data we need ...
2
votes
1answer
447 views

How to handle SizeLimitExceededException from CommonsMultipartResolver in Spring WebFlow?

I have the following situation. I have a CommonsMultipartResolver bean configured the following way. <bean id="multipartResolver" ...
2
votes
1answer
841 views

Spring Web Flow exception handling

How to prevent exception, if requestParameters.sortBy is passed as string (java.lang.NumberFormatException) or is missing (java.lang.NullPointerException)? <view-state id="journeySearch" ...
0
votes
0answers
108 views

Spring Webflow (spring-faces) with JSF 2 and Orchestra - Multiple FacesContextFactory

I configured a Web-Application (Prototype) to Run JSF with Spring Webflow. After configuring a whole (and huge) Webapplication to to the same i get an Error. After Debugging i see that the ...
0
votes
0answers
112 views

Can't bind spring:checkbox

I have jsp page with some spring:form which contain many spring:input's, and spring:checkbox'es. Also there is some checkbox (with default value 'true') with onchange js listener such as: var ...
0
votes
0answers
132 views

Properties required to call remote EJB in UI layer

My project specifications Application server : JBOSS AS 7.1.1 final JSF 1.2, springwebflow 2.0., EJB 3.0 I am calling remote EJB from the UI, so i have initiated the EJB via springwebflow. There is ...
1
vote
1answer
392 views

Spring Webflow: how to force a flow to start again?

I am new to SWF and I unexpectedly inherited the maintenance of a SWF application. The users have a horizontal menu at the top of the screen, in which 5 options appears. When one of them is clicked, ...
0
votes
1answer
580 views

Spring Web Flow 2 Setup, not rendering ${flowExecutionUrl} nor even starting

I am putting together a simple Spring MVC with Web Flow app and I cannot get it to render the flowExecutionUrl on a page so that I can navigate to the next state. Which I assume means the flow isn't ...
5
votes
1answer
522 views

Spring webflow full query string in EL

In short, how can I get the full query string using EL in a webflow view jsp? This is what I am trying to do: <span class="forgot-password"> <a ...
0
votes
2answers
447 views

Spring Web Flow Unit Tests: Set attribute in FlowScope without view-state

This is similar to Spring Web Flow - How can I set up unit test with values already in conversationScope? I've used the solution listed in that question to solve a conversationScope issue, but have ...
2
votes
1answer
403 views

How to integrate Spring Webflow, Spring Mobile and WURFL

I wonder if anyone can help. I am working on a Spring Webflow 2 app, where I would also like to integrate Spring Mobile 1.0 with WURFL 1.4.2. I have got Webflow and Spring Mobile working together ...
3
votes
1answer
198 views

Spring Webflow 2.0 with JSF 2 - Is a dynamic Flow possible?

I´m new to Spring Webflow, so I have a Question about a (or more) Flows. I want to build a few facelets in JSF and one start Page that can have different ui-params in an ui-include, depending on ...
0
votes
1answer
215 views

requestcontextholder concurrent access

I am using below code in my spring webflow application running on weblogic server. RequestContextHolder.getRequestContext() .getExternalContext().getNativeRequest()).getSession() I ...
1
vote
1answer
531 views

spring webflow, evaluate expession ignored in transition

I have a flow definition as flows <view-state id="view1" view="/jsp/view1.xhtml"> <transition on="login" to="view1" > <evaluate expression="'test1'" ...

1 2 3