I'm working on a webapp, using JSF; for the authenticaion I use a form, with its action set to j_security_check?j_url=/faces/main.xhtml; after successfull login the user is redirected to main.xhtml
My question is, is there a way, to call a ManagedBean method between
- j_security_check and
- main.xhtml rendering
- but without creating another view (say: loginRedirectView) or another servlet?
Thanks, krisy