1. New Session is created between consecutive servlet request from an Applet and a managed bean? stackoverflow.comI 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.comI'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 ... |
3. How to send a request from applet to servlet to launch a new page? coderanch.com |
4. Servlet handling multiple requests from applet coderanch.comHaving 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. ... |