Post « HTML « JSF Q&A





1. Post-injection initialisation (JSF 1.2 + Guice)    stackoverflow.com

I'm trying to integrate Guice into a JSF 1.2 (Sun RI) application, and I want to be able to do the following to my managed-beans:

  1. Inject dependencies using the Guice @Inject annotation, ...

2. JSF commandLink, POSTing and the back button    stackoverflow.com

I've recently started doing some JSF work - before that I've always used PHP or Python for web development. I was somewhat surprised to find that JSF uses HTTP POSTs to navigate ...

3. POST request in using JSF    stackoverflow.com

How to fire a POST request using h:outputLink command in jsf?

4. Unable to process a JSF2 post method in order to change password in an oracle database    stackoverflow.com

I am having issues with an ajax post method. I am getting the following error:

serverError: class javax.faces.el.EvaluationException
This is the XHTML code:
<ui:composition id="morComp" xmlns="http://www.w3.org/1999/xhtml"
       ...

5. JSF... My post-JavaOne impressions.    coderanch.com

Let me state upfront that I don't really know all that much about JSF. I'm mainly a Struts guy and have been using it since 2000. That doesn't mean that I'm against trying anything other than Struts; quite the contrary actually. So I recently got back from JavaOne, and many of the sessions I sat through concerned JSF in one way ...

6. 'non post back' request doubt...    coderanch.com

What exactly 'non post back' request is?? I can guess that these requests are just for requesting any resourse (not submittiing any values to server)... correct me, if I am wrong... In case of 'non post back' request, only first and last phase (restore view and render response) is executed... How the container finds out that request is 'non post back' ...

7. question about POST    coderanch.com

8. I can't post anything here!!    coderanch.com

9. When does JSF use or Post ?    coderanch.com





10. Issue with intermediate posting    coderanch.com

Hi, I have a with a "name" , a "subject" , a "subjects" , a "add" and a "save" . The "name" has the required attribute set to true. The requirement is 1. the user will enter the name 2. then he will enter a subject name 3. Click on "add" button, now the subject should get added ...

11. HTTPS Post in Command Link    coderanch.com

12. Auto-login post registration with container security - good idea?    coderanch.com

After some strong advice in here some time ago I finally got around to implementing form based container security using a jdbc realm with Glassfish and I'm pretty satisfied with the result, it didn't really take that long to do and works fine. I was a bit confused about exactly which digest algorithms are supported but got it working with SHA-1. ...

13. ui:repeat and POST    coderanch.com

Hello. I'm struggling to use ui:repeat and can't figure out what the problem is. I wish to render several datatables dynamically like this #{pc.name} The display from this ...

14. Are AJAX fetched values available during post ?    coderanch.com

Tim and others, Are the partial updates done on page after AJAX call available on a post (i.e JSF submit) ? First Name Last Name In my ...

15. Getting GET / POST variable values from a JSF webpage    coderanch.com

It's a breach of good usage. That's because JSF uses postbacks. Unlike traditional techniques, in JSF, the same View may go back and forth between client and server multiple times, since one of JSF's primary functions is to support forms with validation. Although an HTTP GET may pull the form up initially, subsequent requests will employ HTTP post. And, just to ...