I have a custom Servlet where I receive parameters from clients in the form http://localhost/httpinterface/documents?id=XXXX&user=YYYY. The servlet extracts these parameters, performs query to the DB and returns a list of documents, which I want to display using JSF controls (e.g. data grid...) to help users navigate between the documents and also easier to manage the states. Without JSF, I would need ...