Too many sessions created when running HTTPS port on AIX/Jetty
I'm running an HTTPS port using Jetty 5.1.3 on AIX 5.3. Up until now when running my webapp on windows or solaris machines, my session tracking and use of session objects was working fine. And this configuration works fine when using http ports.
What seems to happen in the secured port situation is that new sessions are created every time I call request.getSession(), which results in a new session being used by every servlet/JSP and my session objects that I had stored are no longer available when they should be.
Does anyone know anything else I can try to do in this situation to determine the cause of this? Could the https protocol be throwing off the session-tracking capabilitites of jetty? I should note that running an HTTPS port on windows or Solaris works fine as well.
Any help/suggestions/ideas would be greatly appreciated..
thanks,
Tom

