I have a Java Spring Webflow application and it need to redirect to it's own sub domain for language choice. i.e. mysite.com to fr.mysite.com.
I have tried externalRedirect, but just shows a blank html page.
Here is the webflow defenition snippet:
<transition on="found" to="redirectOnRetrieve">
<evaluate expression="retrieveController.getFoundApplicationRedirect(flowRequestContext)" result="flowScope.redirectUrl"/>
</transition>
Which determines the URL I need to redirect to. And the following is the view state with the externalRedirect:
<view-state id="redirectOnRetrieve" view="externalRedirect:${flowScope.redirectUrl}"/>
Is it also possible to append request parameters to the URL?