Id like to be able to load a flow based on some logic specific to my application.
I need to use the same URL endpoint but would like to load a different web flow file depending on result of my...
Type: Posts; User: avalanche333; Keyword(s):
Id like to be able to load a flow based on some logic specific to my application.
I need to use the same URL endpoint but would like to load a different web flow file depending on result of my...
Hi all,
Can someone point me in right direction for how I can load a specific flow.xml file based on brand (or some other condition).
For example
I want to use the same endpoint for 2 of my...
<action-state id="myAction">
<evaluate expression="myClass.addSomeAttributesToRequest(flowRequestContext)"/>
<transition to="myEndState"/>
</action-state>
<end-state id="myEndState"...
Hi All,
This is what I'm doing:
<action-state id="MyActionID">
<evaluate expression="myActionClass.doSomeAction(flowRequestContext)"/>
</action-state>
Ok thanks again!
Is it proper practice to put "setup" type <sets> and <evaluate> in the <on-entry>?
Does set trigger transitions also?
When I change the xml to use a set it still uses
<transition to="checkConsumerRequest"/>
<action-state id="checkConsumer">
<set...
Thanks a lot for clearing this up. I really appreciate it!
I am having the same issue. Did you every find a better way to do this?
I found that if I put the first evaluate into an <on-entry> it works... I'd still love to have an explanation as to why I need to do this? Just does not seem right.
Tried this, did not make a difference unfortunately.
Hi All,
I'm wondering why when I use multiple <evaluate expression> tags the transition does not pick up the result from the latest <evaluate>?
The consumerResVO.getResult() value IS...
Can anyone point me in right direction to find a sample application which uses Spring MVC and Spring Web Flows in same application?
I'm looking for something along the lines of:
1) A web page...
Does anyone know what the approximate memory footprint of spring web flows in HttpSession is? Or how to get it?
I have tried getting the value myself but it appears flows puts NonSerializable data...
Nevermind... I found the session was being cleared in my code.
Hi all. I'm looking to add back button support to my flows without using max-execution-snapshots.
Here is my scenario.
1) An external source posts some params to the first page of my flow.
2) I...
Ever get an answer for this? I'd really like to know also. From what I have gathered this is not possible though.
I'd also love to see an answer for this. Having same scenario.
Here is the scenario I have:
<!-- Maps request URIs to controllers -->
<bean...
Is there a way I can pass data from a @Controller to a Web Flow without using url parameters (ie in some secure way).
I have a Controller implementation (using @Controller Annotation) that handles...
I'm not sure you understand the question.
I want to first use a controller then forward to Spring Flows, not Flow to Controller.
A change to my above code will be that MyController will extend...
Looks like moving to controllers for landing page is the solution. Once user is authenticated I can use Spring Flows moving forward.
I did some more digging and it appears http://www.springframework.org/tags can only be used in JSP files.
So Il'll go with that as my answer unless someone knows otherwise.
Hi all,
I have added the bolded text below to my list of tags but form:form is not working...
<ui:composition xmlns="http://www.w3.org/1999/xhtml"...
Was this ever resolved? I am having the same issue.
Thanks for the response. Here is some code to give you a better idea of where I stand (I've replaces some logic with comments to shorten it for this purpose)
And Yes I am using a Spring MVC...
Hi All,
I'm new to spring flows.
Right now I'm using a controller to load my model and view (an xhtml page).
When this page posts I'd like to make use of Spring Web Flows.
How can I do this?...