Questions tagged [spring-webflow]

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

Spring Web Flow is a Spring MVC extension that allows implementing the "flows" of a web application. A flow encapsulates a sequence of steps that guide a user through the execution of some business task. It spans multiple HTTP requests, has state, deals with transactional data, is reusable, and may be dynamic and long-running in nature.

1302 questions
3
votes
0 answers

Securing Web Flow in Grails using Spring Security

According to Spring Web Flow docs it is possible to secure flow states using SecurityFlowExecutionListener How can I do it in Grails ? I am trying to achieve demanding authentification in the middle of the flow.
verglor
  • 616
  • 7
  • 21
3
votes
2 answers

Spring WebFlow: How to get request parameters in JSP?

I'm using Spring WebFlow together with Spring MVC. When i request page for example http://localhost:8080/testapp/index.html?param=100 WebFlow make redirect to http://localhost:8080/testapp/index.html?execution=e3s1 and can't get param in jsp, param…
marioosh
  • 27,328
  • 49
  • 143
  • 192
3
votes
1 answer

Support for Proxying SOAP/XML Endpoints via Spring Cloud Gateway

Trying to log request and response while proxying soap service using Spring cloud gateway. Below is the code snippet... which is throwing IllegalStateException. java.lang.IllegalStateException: Only one connection receive subscriber allowed. at …
shatk
  • 465
  • 5
  • 16
3
votes
1 answer

Spring Web Flow: Call bean's method as target action

I have a JSF+Spring Web Flow application and I'd like to move from one view to another one using a method defined in the view's bean. So, my flow.xml is like the following:
Alessandro
  • 4,382
  • 8
  • 36
  • 70
3
votes
1 answer

Spring Web Flow

I am trying to get my head around Spring Web Flow 2... Am I correct in saying that a web flow operates entirely through a single url (but with different execution…
Lyndon
  • 573
  • 6
  • 24
3
votes
2 answers

How to configure spring webflow with jsf 2.0?

I have a problem integration JSF2.0 as a view technology to spring webflow. I managed to get it "almost" working, the only thing left is configuring ajax support for JSF2.0. Ajax requests are sent, responses from the server are received, but the…
WeMakeSoftware
  • 9,039
  • 5
  • 34
  • 52
3
votes
2 answers

Spring Web Flow without the "Web"

Is it feasible to use the workflow engine from Spring Web Flow without any of the Web-related infrastructure? Specifically, I want to consume Spring Web Flow from my code without having to touch any of the Servlet API, including HttpServletRequest…
earldouglas
  • 13,265
  • 5
  • 41
  • 50
3
votes
1 answer

Spring webflow + portal - How do you get url parameters in the flow definition?

I am kinda new to the portals and spring webflow and trying to combine them for the purpose of setting flows for various user tasks. My problem is that I need to generate a direct URL to the first state and pass in the name of the subflow as a…
Rickster
  • 1,393
  • 3
  • 13
  • 19
3
votes
1 answer

How to call the bean with the separator in the name to flow

I have a bean When you call in flow I get an error. How to call?
3
votes
0 answers

Remove Spring WebFlow "execution" request parameter from JSF forms

I have a Spring 4.1.7 + Spring WebFlow 2.4.1 + JSF 2.0 project. I would like to get rid of the request parameter that is added by Spring WebFlow, i.e. execution=e15s1. I want to get rid of this during transition of the view state as…
3
votes
3 answers

Spring Web Flow and Alternatives

I am building a a web app with Spring MVC and hibernate. I am struggling with scope. E.g., create parent and children on same interface requires resetting child bean after first child created. Spring MVC does not allow removal of bean from session…
Jake
  • 4,322
  • 6
  • 39
  • 83
3
votes
0 answers

Spring Web Flow and Spring Security's CSRF

How do I use Spring Security implementation of CSRF prevention in a Spring Web Flow module within my web application? I have configured org.springframework.web.filter.DelegatingFilterProxy successfully for CSRF prevention but module using Spring Web…
user847964
  • 161
  • 3
  • 8
3
votes
1 answer

How to include a pop-up dialog box in subflow

Is there a way to call a dialog box inside subflow state so that the background(current flow) becomes disabled? So that when the subflow ends (after closing the pop-up dialog box), it can then update the parent flow (current page). I am trying to…
Ryan Fung
  • 2,069
  • 9
  • 38
  • 60
3
votes
1 answer

Bookmarkable URL in JSF application - Trying to use Spring Webflow and JSF . Any suggestions?

Our application is JSF , hibernate & Spring. Currently the url is in following format http://www.skill-guru.com/skill/login/testDetails.faces?testId=62&testName=PMP-Certification-practice-test We want a clean url like…
vsingh
  • 6,365
  • 3
  • 53
  • 57
3
votes
1 answer

Spring MVC with Spring Webflow

I am trying to use Spring Webflow with my Spring MVC application.I had a look at the booking-mvc example and followed it,but most of the examples on the web are done with Tiles.I Hope that i am not completely wrong in my understanding and that…
Abhishek Ranjan
  • 911
  • 1
  • 14
  • 29