thanks a lot!!!!
the bit i was missing was
getFormErrors(context).reject("invalid.credentials");
i couldnt get how to get the errors back into the scope to report on them in the flow.
...
Type: Posts; User: belarion; Keyword(s):
thanks a lot!!!!
the bit i was missing was
getFormErrors(context).reject("invalid.credentials");
i couldnt get how to get the errors back into the scope to report on them in the flow.
...
Just to clarify you would do ..
<transition on="login" to="showLoginResult">
<action bean="loginFormAction" method="bindAndValidate" />
<action bean="loginAuthenticator" method="login" />...
Hi ,
I am a brand new user of webflow (long time spring user) i am trying to get my head around how to do a simple login process with webflow.
The flow looks like
1) Present form to user and...