This seems pretty easy in theory to me, but I am stumped. I have a webapp running on Tomcat 4.1. A user signs in and I authenticate them based on a MySQL database and all that fun stuff, and add their UserID to the HttpServletRequest.Session if their signon is successful. This is non-secured and running on port 8080. I do not need this section to be secured. However, there is another portion of the site that DOES need to be secured with a certificate. The certificate is installed, and Tomcat is configured to redirect to port 8443 for secured requests. This is working as expected, EXCEPT once they click on that secured link, their Session does not carry over. I understand why, as the session is set on 8080 and the secured site is on 8443. But there has to be a way to keep that session alive?
This seems so simple to me but I am striking out! Any help or thoughts would be greatly appreciated!
Thanks!
This seems so simple to me but I am striking out! Any help or thoughts would be greatly appreciated!
Thanks!