Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.