Hello,
is there any possibility to generate url which will redirect not to first state of flow but to a specific state of flow?
example:
in example above starting state is 'allProducts', so when I will use url like for example this: my.site.address/productsFlow.do then it will redirect me to first state of flow (allProducts) and starts new flow. How should I write my url, that it could redirect me to state 'signleProduct', when I am in different flow? Is it possible?Code:<?xml version="1.0" encoding="UTF-8"?> <flow xmlns="http://www.springframework.org/schema/webflow" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/webflow http://www.springframework.org/schema/webflow/spring-webflow-2.0.xsd" start-state="allProducts"> <view-state id="allProducts" view="..."> ... </view-state> <view-state id="singleProduct" view="..."> ... </view-state> </flow>


Reply With Quote
