When I login to my app, i am under SSL, when my login action verifies
and forwards to the welcome page, i take ssl off. Periodically I
lose my session when this happens. Any takers? Thanks!:)
//LoginAction class
//after validation
ActionForward forward = new ActionForward ();
ActionForward tmp = actionMapping.findForward ( "successpage" );
String path = "http://" +
request.getServerName ()+
tmp.getPath ();
forward.setPath ( path );
forward.setRedirect ( true );
return forward;