Results 1 to 3 of 3

Thread: embedded flow question

  1. #1
    Join Date
    Mar 2011
    Posts
    3

    Default embedded flow question

    hi,
    I copied the embedded flow example (from webflow-showcase/embeddedFlowContainer.jsp) to experiment and noticed two things:
    * if I use <form:form> the action attribute is populated wrongly - as states change, the URL in the action does not reflect the current state but is stuck to eXXs01
    * flow starts in embedded mode regardless how I invoke it - the mode=embedded seems to be not needed as simple link to the flow URL automatically gets it started in embedded mode

    Cheers,
    Georgi

  2. #2
    Join Date
    Mar 2011
    Posts
    3

    Default

    <form:form> "mystery" resolved - the action is populated with the current URL, webflow is not responsible for it - very logical. I should've RTFM

  3. #3
    Join Date
    Aug 2006
    Location
    Brooklyn
    Posts
    556

    Default

    Yes you do need to set the form action because you will transition to the next view state without a redirect:

    Code:
    <form action="${flowExecutionUrl}" ... >
    
    </form>
    As for the second question there appears to be an issue with the FlowExecutionFactory creating every flow execution with the same flow execution attributes map. Would you mind opening a ticket in JIRA?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •