New Session is created between consecutive servlet request from an Applet and a managed bean??
- by khue
Hi,
I want to pass parameters betweeen applet and jsf components
So when a value of a input textbox changed, its binding backing bean makes connection to a servlet. The servlet create an attribute and save to HttpSession using (request.getSession(true)).setAttribute(name, value);
Then at some event, applet will access another servlet. This…