The organisation I'm working for is currently running an application on Glassfish 3.1.2.2 behind a hardware load balancer that is also in charge of SSL termination. We are currently having issues with glassfish not knowing that it is behind an SSL connection and therefor generating certain things incorrectly. Specifically the following:
- session cookies are not flagged as secure
- redirects generated from glassfish are done as http:// instead of https://
- request.isSecure() is not returning the correct value
- request.getScheme() is not returning the correct value
In theory we could rewrite all of these things in the load balancer, but on previous projects using Tomcat and have been able to solve all of them at the container level.
In Tomcat I can just set the secure flag and the scheme value on the HTTP connector definition and everything is good to go. But I can't seem to find equivalents on glassfish.
Anyone have any ides?