Spring web flow transitions not working at all. only the first view state loads. But on click of any transition states, the flow gets refreshed again and the first view is again loaded. Although, the same flow xml and same setup works fine in my friends machine. How is this possible? The same flow(flow xml) works fine in one system and not the other. has anyone ever faced this type of problem? Any help is greatly appreciated. thanks!!!
Adding my flow xml
<?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">
<view-state id="forgotPasswordFlow" view="forgotPassword/forgotPasswordFlowSelection">
<transition on="retailpage" to="forgotPasswordRetail">
<evaluate expression="passwordService.createForgotPasswordBean()"
result="conversationScope.forgotpasswordbean" />
</transition>
<transition on="grouppage" to="forgotPassword">
<evaluate expression="passwordService.createForgotPasswordBean()"
result="conversationScope.forgotpasswordbean" />
</transition>
</view-state>
<!-- Forgot Password - Retail flow -->
<view-state id="forgotPasswordRetail" view="forgotPassword/forgotPasswordRetail">
<transition on="nextpage" to="getRetailUserProfile">
</transition>
</view-state>
<action-state id="getRetailUserProfile">
<evaluate
expression="passwordService.getRetailUserProfile(requestParameters.email,requestParameters.ssn)"
result="conversationScope.userprofile" />
<transition to="validateUserProfle" />
</action-state>
<decision-state id="validateUserProfle">
<if test="conversationScope.userprofile == null" then="forgotPasswordRetail"
else="securityQuestions" />
</decision-state>
<!-- Challenge questions and its response -->
<view-state id="securityQuestions" view="forgotPassword/securityQuestions">
<transition on="nextpage" to="validateSecurityQuestions">
</transition>
</view-state>
<action-state id="validateSecurityQuestions">
<evaluate
expression="passwordService.validateSecurityQuestons(flowRequestContext,conversationScope.userprofile,conversationScope.forgotpasswordbean)" result="conversationScope.forgotpasswordbean"/>
<transition to="verifySecurityQues" />
</action-state>
<action-state id="verifySecurityQues">
<evaluate
expression="conversationScope.forgotpasswordbean.isSuccess()" />
<transition on="yes" to="forgotPasswordSuccess" />
<transition on="no" to="verifyInvalidAttempts" />
</action-state>
<action-state id="verifyInvalidAttempts">
<evaluate
expression="conversationScope.forgotpasswordbean.getInvalidAttempts() > 2" />
<transition on="yes" to="accountLocked" />
<transition on="no" to="securityQuestions" />
</action-state>
<view-state id="forgotPasswordSuccess" view="forgotPassword/forgotPasswordSuccess">
<transition on="nextpage" to="forgotPasswordReset">
</transition>
</view-state>
<!-- Password reset option -->
<view-state id="forgotPasswordReset" view="forgotPassword/forgotPasswordReset">
<transition on="nextpage" to="resetPassword"/>
</view-state>
<action-state id="resetPassword">
<evaluate
expression="passwordService.resetPassword(flowRequestContext, conversationScope.userprofile,conversationScope.forgotpasswordbean)" />
<transition to="checkResetStatus" />
</action-state>
<action-state id="checkResetStatus">
<evaluate
expression="conversationScope.forgotpasswordbean.isIncorrectPasswordFormat()" />
<transition on="yes" to="passwordResetSuccess" />
<transition on="no" to="forgotPasswordReset" />
</action-state>
<!-- Account Locked scenario -->
<end-state id="accountLocked" view="forgotPassword/accountLocked"></end-state>
<!-- Forgot password success -->
<end-state id="passwordResetSuccess" view="forgotPassword/passwordResetSuccess"></end-state>
</flow>
----------------------------
What I was able to see is that, whenver a transition is triggered, it returns http status 302 rather than 200. Hence it defaults to flow start.
Can anyone help me here pls..