• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Sheriffs:
  • Ron McLeod
  • Devaka Cooray
  • Henry Wong
Saloon Keepers:
  • Tim Holloway
  • Stephan van Hulst
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Frits Walraven

Session Scope JSF

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Guys,
I am doing a project in java ee. I use xhtml and managed bean for the web application interface.I want to check whether the email id value which the user enters in the login page comes to the next corresponding page. How do I do that?

I have attached the files. index.xhtml is the login page where user gives the input, reserve is the page where the user gets to see after loggin in. UserInfoBean.java is the corresponding java managed bean file for index.xhtml.

Would really appreciate some help on this.

I couldnt attach the xhtml file. Pasting it here.
index.xhtml
---------------



Thanks
 
priya loganathan
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
on the previous post, in jsp there is getParameter,setAttribute and getAttribute. what I need is achieved through this. any idea how to do it in jsf?
 
Saloon Keeper
Posts: 28319
210
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I see you found the "code" button but didn't know how to work it properly, so I fixed your post so I could read it. To use the code button, highlight the code (or data) text and then click the "Code" button. Attachments are not necessary for code or XML.

JSF is really about manipulating beans, not working with pages. Pages are just the View in JSF's MVC architecture. SO when you fill in a JSF form and fire off an action, JSF will validate the input, and if the input is valid, it will automatically invoke the "set" methods for the form's properties. Then it will invoke your action method which can do whatever it needs to do with the assurance that the bean's properties were updated from the form inputs and that the properties are valid according to the validation restrictions placed on the form.

Other than that, all I can say is don't use user-written login screens in production apps. They're insecure.
 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi For detailed explanation with live example on JSF session scopes like view,request,session.application visit
http://java-recent.blogspot.com
 
I found some pretty shells, some sea glass and this lovely tiny ad:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic