applet « Request « JSP-Servlet Q&A





1. New Session is created between consecutive servlet request from an Applet and a managed bean?    stackoverflow.com

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 ...

2. Servlet to handle both applet communication and http requests    stackoverflow.com

I'm building a solution where a servlet on tomcat6 handles input from another machine by providing a jsp web page. I'd also like the same servlet to communicate with an applet ...

4. Servlet handling multiple requests from applet    coderanch.com

Having a login servlet doesn't do much good if you need to open a Connection for each new servlet request - you'd need to log in again for each request. Or are you planning to keep the DB connection around in a session for that user somehow? Otherwise, remember to properly close the Connection at the end of the servlet request. ...