I have 12 hour cookie persistence enable, it works fine with other browser except IE. Users are complaining about getting logged off randomly. Is there any fix for this?
{External VIP} --> {Internal VIP} --> {Pool Members}. Cookie persistence is applied to the internal VIP.
If a user has their privacy settings set to “HIGH” in IE it requires a P3P compact policy header to accept file cookies. It you used a session cookie, IE users would have that issue, but it also wouldn’t have a timeout value. It would require the browser to be closed. If you truly want to timeout your persistence cookies, I would recommend looking into how Facebook and Google get around the P3P policy. I’m not going to link to it, but a simple search should find the info required.
Are you sending the cookie with ever request? It could be possible that the cookie is reaching its expiration mid session because it was first set in a previous session and you’re not sending the cookie with each request.
Are you sending the cookie with ever request? It could be possible that the cookie is reaching its expiration mid session because it was first set in a previous session and you’re not sending the cookie with each request.