Skip to content

Since Mendix 9.12 DeviceType and Profile cookies duration is set to 1 year instead of session duration #9352

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/en/docs/refguide/runtime/mendix-client/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -256,8 +256,8 @@ When the Mendix client is running, it sets a number of technical cookies to reco
| **mx-cookie-test** | Client | Tests whether the browser supports cookies | `/` | deleted immediately after setting it | `false` |
| **OfflineLogout** | Client | Used in offline applications when there is no connection and tells the runtime to logout on the next request | `/` | 1 year for offline sessions¹ | `false` |
| **originURI** | index.html | Tells the client where to redirect to if a user is required to log in | `/` | until user closes their browser (session cookie) | `false` |
| **DeviceType** | Runtime | Holds the type of the device used for the session | `/` | until user closes their browser (session cookie) | `true` |
| **Profile** | Runtime | Holds the navigation profile that is being accessed within the session | `/` | until user closes their browser (session cookie) | `true` |
| **DeviceType** | Runtime | Holds the type of the device used for the session | `/` | 1 year | `true` |
| **Profile** | Runtime | Holds the navigation profile that is being accessed within the session | `/` | 1 year | `true` |
| **SessionTimeZoneOffset** | Runtime | Holds the time zone offset for the session | `/` | until user closes their browser (session cookie) | `true` |
| **xasid** | Runtime | Used for multi-instance fail-over | `/` | until user closes their browser (session cookie) | `true` |
| **reloginReason** | Runtime | Used to let the client know that a relogin reason should be displayed on the sign in page—*not used by apps created in Mendix version 10.9.0 and above* | `/` | until user closes their browser (session cookie) | `true` |
Expand Down
4 changes: 2 additions & 2 deletions content/en/docs/refguide9/runtime/mendix-client.md
Original file line number Diff line number Diff line change
Expand Up @@ -223,8 +223,8 @@ When the Mendix client is running, it sets a number of technical cookies to reco
| **mx-cookie-test** | Client | Tests whether the browser supports cookies | `/` | deleted immediately after setting it | `false` |
| **OfflineLogout** | Client | Used in offline applications when there is no connection and tells the runtime to logout on the next request | `/` | 1 year for offline sessions¹ | `false` |
| **originURI** | index.html | Tells the client where to redirect to if a user is required to log in | `/` | until user closes their browser (session cookie) | `false` |
| **DeviceType** | Runtime | Holds the type of the device used for the session | `/` | until user closes their browser (session cookie) | `true` |
| **Profile** | Runtime | Holds the navigation profile that is being accessed within the session | `/` | until user closes their browser (session cookie) | `true` |
| **DeviceType** | Runtime | Holds the type of the device used for the session | `/` | In Mendix 9.12 and above, 1 year. Below Mendix 9.12, until user closes their browser (session cookie) | `true` |
| **Profile** | Runtime | Holds the navigation profile that is being accessed within the session | `/` | In Mendix 9.12 and above, 1 year. Below Mendix 9.12, until user closes their browser (session cookie) | `true` |
| **SessionTimeZoneOffset** | Runtime | Holds the time zone offset for the session | `/` | until user closes their browser (session cookie) | `true` |
| **xasid** | Runtime | Used for multi-instance fail-over | `/` | until user closes their browser (session cookie) | `true` |
| **reloginReason** | Runtime | Used to let the client know that a relogin reason should be displayed on the sign in page | `/` | until user closes their browser (session cookie) | `true` |
Expand Down