The Web Flow module is a Spring MVC extension that allows you to define Controllers using a domain-specific-language. This language is designed to model user interactions that require several requests into the server to complete, or may be invoked from different contexts.

learn more… | top users | synonyms

2
votes
0answers
41 views

Available paths listing for Spring actions

I have an application which exposes RESTful actions using spring annotations and Spring MVC. It looks like @RequestMapping(value = "/example/{someId}", method = RequestMethod.GET, ...
2
votes
0answers
324 views

Unsupported Exception in jsf 2.0 + springwebflow 2.0

I started to create a project using the following technologies JSF 2.0 Springwebflow 2.0 Primefaces 2.2.1 Richfaces 3.3 Appserver : JBOSS-AS-7.1.1 Final My application got deployed successfully, ...
1
vote
0answers
100 views

Formatting bound date field in Spring Web Flow

I'm having a problem formatting the contents of a bound Date field in a spring webflow form. The validation end of things is working, and correctly enforces the date format specified in my ...
1
vote
0answers
131 views

Generic Exception handling in jsf 2 and spring webflow

I am trying to implement exception handling in our application (primefaces,jsf and spring webflow). I have used FlowExecutionExceptionHandler and this works for some exceptions like ...
1
vote
0answers
302 views

Application was not properly initialized at startup, could not find Factory: javax.faces.context.FacesContextFactory

Hi I have a spring richfaces project run with myfaces 2.1.10, but I want to change to Mojarra 2.1.19 , but the application give me the error: SEVERE [javax.faces] (MSC service thread 1-4) Application ...
1
vote
0answers
34 views

Differences between Internet Explorer and others on buttons and input field, what is submitted in a form?

Id like to ask why Internet Explorer in the following example submits the button which is of type button in the parameter list when the submit button is pushed? While Firefox doesnt. <!DOCTYPE ...
1
vote
0answers
66 views

sending a request from a view

my application has fileUpload functionality, right now when user submits, it opens an excel sheet (Jasper reports) but it never says whether it is success or not. And once we close or save the ...
1
vote
0answers
41 views

Spring webflow issue with url params when invoked from word document

I have a spring webflow application which is siteminder protected. The url typically has some params which the app uses to execute it's functionality. The implementation details are as follows - ...
1
vote
0answers
52 views

Is there any way to override the argument insertion for default Spring validation error messages?

Specifying required="true" in a Spring Web Flow <binding> element seems to use a default error message that inserts the field name into the message. I'm hoping there's a way to instead use that ...
1
vote
0answers
161 views

Include spring webflow controller in a jsp

Bit of a background: We have an existing spring webflow that we want to have ajaxified so that the page can be displayed in a "lightbox" (at a different URL) where the user can interact with the ...
1
vote
0answers
160 views

How to test Grails webflow with input parameter?

I'm in the process of writing tests for webflows and I have a webflow (A) that calls another webflow (sub-webflow) (B) during its execution. If A calls B it always states a required parameter / input ...
1
vote
0answers
116 views

storing domain class in flow scope

In a Grails web flow I store a List of the following objects in flow scope. class ParsedBrochure implements Serializable { Brochure brochure transient MessageSource messageSource ...
1
vote
0answers
271 views

How to render <form:checkboxes> in page direction instead of line direction?

I need to bind Map<Long, String> to checkboxes in a form. Here is my code: <form:form modelAttribute="flowForm" action="${flowExecutionUrl}"> <table style="width: 100%"> ...
1
vote
0answers
396 views

Need help in Spring MVC + JSF2 + Webflow + RichFaces 4

Im now working on a project that require me to migrate from the existing Spring MVC + JSP/tiles to Spring MVC + JSF2 + Webflow + RichFaces 4. So far I'm had all the necessary configuration by ...
1
vote
0answers
202 views

Grails WebFlow and Command Objects: Only One Command Object allowed?

Grails 1..3.7 In regular controller actions I can do the following: def someAction = { OneCommand oneCmd, TwoCommand twoCmd -> } However, in a webflow action I have the equivillent: def ...
1
vote
0answers
709 views

Spring Web Flow with JSF 2 - h:commandButton not working

I'm currently using Java Server Faces (Mojarra 2.1.7) and Spring(3.1.0.RELEASE)/Spring-Webflow(2.3.1.RELEASE). My webapplication is inspired by the Spring-Primefaces-Showcase. Everything is working ...
1
vote
0answers
223 views

Webflow: Manipulating a conversation scoped object in an action

I'm new to Webflow and am having an issue: I have some form objects which delegate to an underlying conversation scoped object (and thus modifying it when the form is bound on post). However, ...
1
vote
0answers
236 views

How can I access JSF ResourceBundle from Spring Webflow expression?

I'm trying to come up with a clean way of having a String resource bundle for my application, that contains my JSF labels etc and my messages and errors. What I have is a 'Create Element' page that ...
1
vote
0answers
163 views

Spring Web Flow List mapping

In the model bean I have a List with my objects. Like this: private List<Data> data; class Data{ String val1; String val2; ...getters, setters } I need to map a few from select ...
1
vote
0answers
95 views

Jquery delete spring bound row: still on request?

I'm using spring-web-flow + spring mvc. Within my spring web flow when a validation error occurs I go back to the page on which it occurred as is the default in spring web flow. The issue I'm having ...
1
vote
0answers
71 views

Web Flow Ignores STATE_SAVING_METHOD_CLIENT for JSF Views?

I have a web app that is using Spring Web Flows with Facelets as the view technology. I have set the context param <context-param> ...
1
vote
0answers
132 views

Webflow Tiles Issue

All, We have implemented spring using tiles and everything works great so far. I have 2 issues so far: 1) I however do not like the idea of defining a new definition every time a new jsp is ...
1
vote
0answers
225 views

java.lang.UnsupportedOperationException: Implement SWF integration when using <ice:form>

i was defining menubar as follows: <ice:menuItem value="menuItem" style="float:right" ></ice:menuItem> <ice:menuItem value="menuItem2" style="float:right" ...
1
vote
0answers
159 views

How To Create A Dynamic Webflow

Say I have a Category domain and a Question Domain and a Category hasMany questions. I need to first present the user with a list of categories. They can select any number of categories. Say they ...
1
vote
0answers
294 views

Sending argumentsfrom JSF to webflow transitions

Basically what I have now is something like: <view-state id="pageOne" view="pageone.xhtml"> <transition on="gotoPageTwo" to="doGotoPageTwo" /> </view-state> <subflow-state ...
1
vote
0answers
435 views

Stuck on Configuring Spring Webflow on Netbeans 7.0

am very new to java ee and am trying to develop an app with JSF. I tried to define my own flow definition "language" 'chuckles' when i realised there had to be an enterprise class plugin out there for ...
1
vote
0answers
1k views

Spring Webflow 2.3.0 Samples unstartable… No Idea how to fix

I'm currently evaluating Spring (with a focus on WebFlow) for future projects. After reading lots of docs and articles (most of which didn't help much) I downloaded the current release of Spring ...
1
vote
0answers
347 views

Spring WebFlow: Cleanup on HttpSession invalidation

If I need to perform some resource cleanup (deleting temporary files) upon Flow completion, including when the HttpSession times out, what's the best way to do this? ...
1
vote
0answers
235 views

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 ...
1
vote
0answers
890 views

Problems with Hibernate Validator and Spring Webflow

I'm trying to validate a form using Spring WebFlow and Hibernate Validator Annotations, but I'm doing something wrong. If I use the Spring validation way (ValidationContext, MessageContext, ...
0
votes
0answers
23 views

Jboss as7,jsf2,cdi,springwebflow fileNotFoundException

Hello, i'm working on a web application using JSF2,primefaces 3.4.2,springwebflow 2.3.1,CDI,jpa and activiti 5.9 as a process engine (workflow) : before integrating the workflow part(activiti and it's ...
0
votes
0answers
19 views

Ajax post using JQuery in Spring webflow project

I am working on a spring webflow project what was using Spring.AjexEventDecoration but the firm is requesting for it all to be remove and to use JQuery for the java-script part. I had the following ...
0
votes
0answers
29 views

sendRedirect() at first logging

I have the following problem, I'm developing an app which was developed with Spring Webflow 2.3.1. This app has a main flow with the main menu and the subflows to go to different pages. But now the ...
0
votes
0answers
12 views

how to put info to the form after getting then from the databse in jsf and webflow

I am using webflow and jsf. when I click the link, I want to get url of the form from the database and put it for my form and get nqPassword from the databse and put it to the form. Then a new window ...
0
votes
0answers
21 views

Using Spring Web-flow and trying to use Spring AjaxEventDecoration to kick off transitions

I am using Spring Web-flow and trying to use Spring AjaxEventDecoration to kick off transitions. but something is going on that this code is not running <tr> ...
0
votes
0answers
27 views

Pass values from servlet context to context of spring webflow

I want to pass username/password from servlet context to context of Sprint webflow. I have got username/password in servlet. I tried saving these values in session. From Context of Sprint webflow, i ...
0
votes
0answers
48 views

Webflow: it's possible to switch between flows?

I have two controllers and each one have a flow. In my menu I have a link to the flows. If I'm in flow #1 and click in the link of the flow #2, Grails will show me the view of the flow #1. The only ...
0
votes
0answers
39 views

Spring 3 Webflow with JSF 2 links with _eventId not transitioning

I have gotten h:commandButton and h:commandLink to work, but the simple h:outputLink will not. I am trying JSF 2 (with facelets) code below: <h:outputLink ...
0
votes
0answers
41 views

dijit.form.DateTextBox is not visible when the page is loaded

When my page is loaded I cannot see calendar: When I click on the birthday field of the form it appears, but it does not look as I expect: The code I use to display in jsp file: <label ...
0
votes
0answers
67 views

LazyInitializationException in Spring webflow

I've succesfully managed to get OpenSessionInView working with Spring MVC and Hibernate and everything is working fine, but it seems that my webflows don't get any open session while rendering their ...
0
votes
0answers
58 views

Required Some Best practices to detect the locale of a user using jsf2 + spring web flow

I am just trying to figure out some good approches to detect the locale. The approach I am following is : 1-One language Bean with the below code <code> ...
0
votes
0answers
52 views

Spring Webflow: logout

I am using Webflow 2.3.0.RELEASE and Spring 3.1.2.RELEASE with Spring security and Freemarker. It all works well except that when I logout the session is not destroyed. e.g. when I click the logout ...
0
votes
0answers
384 views

Spring security:How to map j_spring_security_check in controller?

I'm trying to integrate spring security into existing code base which is in spring mvc. In my existing code base i v'e a client delegate in web project which interacts with service delegate in ...
0
votes
0answers
58 views

cannot convert from StandardServletEnvironment to MvcEnvironment in Springs

I am running one of the sample spring webflow example . At runtime I am getting the error as org.springframework.beans.factory.BeanCreationException: Error creating bean with name ...
0
votes
0answers
41 views

spring-webflow currentUser ROLE

In my java code if I want to check if the current user is admin I am doing : if(SecurityContextHolder.getContext().getAuthentication().getAuthorities().contains(new SimpleGrantedAuthority("ADMIN"))) ...
0
votes
0answers
13 views

WebFlowTestCase registerFlow() multiple flows possible?

Hi I have a WebFlowTestCase and is working fine but I ran into a prob when I need to test another flow that is in the same controller ( groovy). The is what my controller looks like: class ...
0
votes
0answers
29 views

BadlyFormattedFlowExecutionKeyException in grails webflow

I'm getting grails "BadlyFormattedFlowExecutionKeyException" exception when I change the execution param value in address bar!! Does anyone know how to handle such Exceptions? Cheers!
0
votes
0answers
108 views

Why do I have to make an AJAX request twice to dispaly primefaces <p:dataTable when using <p:columns in it?

I'm using a primefaces with to display a dynamic set of columns, like this : <p:dataTable value="#{queryResults}" var="row" style="margin-top:15px;"> <p:columns ...
0
votes
0answers
61 views

How to validate select in spring dojo

I have a form with a dropdown with dojo decorations applied to it. When I submit the form without selecting anything in the dropdown I don't get any alert or required message that the form is being ...
0
votes
0answers
80 views

Upgrade from Spring webflow 1 to webflow 2

We have recently upgraded our project to Spring 3. Since Webflow 1.0 is not supported in Spring 3.0 we now have to upgrade webflow to 2.0. Introduction of Web 2.0 introduces a lot of compilation ...

1 2 3 4 5 6