InterviewSolution
| 1. |
What Are The Obssocookie Contents? |
|
Answer» Cookie contains encrypted session token and non-encrypted data. This Encrypted Session Token CONSISTS of : DN of the authenticated user, level of auth scheme, ip address of client to which cookie was issued, time the cookie is issued, time the cookie was LAST updated. If the user is not idle, then cookie will get automatically updated at a fixed interval to prevent session timeout. The updated interval is the 1/4 TH of idle session timeout of accessgate. The Unencrypted ObSSOCookie data contains cookie expiry time, domain in which cookie is VALID, additional flag that DETERMINES if cookie can only be sent using SSL. Cookie contains encrypted session token and non-encrypted data. This Encrypted Session Token consists of : DN of the authenticated user, level of auth scheme, ip address of client to which cookie was issued, time the cookie is issued, time the cookie was last updated. If the user is not idle, then cookie will get automatically updated at a fixed interval to prevent session timeout. The updated interval is the 1/4 th of idle session timeout of accessgate. The Unencrypted ObSSOCookie data contains cookie expiry time, domain in which cookie is valid, additional flag that determines if cookie can only be sent using SSL. |
|