Imagine the following situation. I have a bounded task flow and some functions and views:
A method call which represents a function from the session bean which takes a parameter, makes some operations and returns a result. I put this parameter in the page flow scope.
A view which displays the result from the function as an input text field, that can be edited - represented by a jsff page.
<af:inputText value="#{bindings.name.inputValue}" ... />
I have a second method call, representing again a function from the session bean. This function takes the value from the input text field and makes some operations.
The question is: How to pass the parameter from the text field in step 2 to the method call in step 3
Thank you!