HTTP « Glassfish « JSF Q&A





1. Glassfish Server Webservice behind Apache HTTP Server    stackoverflow.com

Hi We started to create our applications with J2EE. We now created a Webservice and deployed it to the Glassfish Server. We have written an apache proxy rule to access it ...

2. Force Specific Response Header for JSF webapplication on Glassfish    stackoverflow.com

We have a Java EE 6 web application with JSF 2.0 running on Glassfish 3.1. There we encountered a strange bug: the Mime type of the response header send by Glassfish to ...

3. Transferring from http to https in Glassfish 3.1.1    stackoverflow.com

I'm using Glassfish 3.1.1 and JSF 2.0: I have the following code:

public String doLoginOrCC() {

    HttpServletRequest request = (HttpServletRequest) FacesContext.getCurrentInstance().getExternalContext().getRequest();

    this.flightNumber = request.getParameter("flightNumber");

    ...