Having replaced a <jsp:forward page="URL">
with a response.sendRedirect("URL");
, I find I know lose the session once the redirect occurs. Is there a way to preserve the session with a redirect, or to reconstitute the session cookie and send it along with the redirect?
I know I could use JavaScript via window.location = "URL";
, but that is far from ideal!
Any help?