http « Session « JSF Q&A





1. Why does my session id (JSESSIONID) change while switching from https to http? java jsf    stackoverflow.com

I have a page that uses https and when i do a redirect from the bean that uses that https page to some http page. Then my session id changes. How ...

2. JSF HTTP Session Login    stackoverflow.com

i try to create login form in web application. in JSP page i can use

<%
   String name = request.getParameter( "username" );
   session.setAttribute( "theName", name );
%>
but now i using ...

3. JSF Http session store    coderanch.com