There is some input in my stream, i.e.
<input name="someInput" type="long" required="true"/>
and I would like to redirect to the final state to a location that depends on this input. I am trying to do the following:
<end-state id="done" view="externalRedirect:contextRelative:/blahblah/${someInput}"/>
This does not work (the web stream does not replace $ {someInput} with its value (it treats this as a standard string. Do you know how to do this correctly?
source share