I am using JSF 2.1. My login page is in JSP. I want to send the login parameters as a POST request, intialize my LoginBackingbean properties and want to invoke my authenticate() method which is in Loginbackingbean.
I am also trying to call preRenderView type event listener to initialize few backend EJB services which is used in authenticate method.
Once successfully authenticated, my authenticate method pass the request to home page.
I tried to intialize my LoginBackingBean properties using f:viewparam but looks like it supports only GET request.
Here is my snippet of code of prelogin.xhtml:
`<f:view contentType="text/html" encoding="UTF-8">
<h:body>
<f:metadata>
<f:viewParam name="UserName" value="#{login.userName}" required="true" />
<f:viewParam name="Password" value="#{login.password}" required="true" />
<f:event type="preRenderView" listener="#{login.initBeforeRenderView}" />
</f:metadata>
</h:body></f:view>`
Can someone please tell me a way to do this?