Cannot see active session in 2.5.0.1

4
Hi there, I have noticed that in 2.5.0.1 the system doesn't store the active users session in the database, which mean that I cannot see who is active in the system. This is a feature we cannot miss it :) Any idea how come? Thanks, Panayu
asked
2 answers
3

That's because the session isn't stored in the database by default in Mendix 2.5. This will improve the performance of login calls and keep-a-live calls (especially relevant for huge amounts of concurrent users).

You can configure persistent sessions by setting the persistentSessions configuration option to true.

See the Mendix 2.5 deployment on Windows how-to for details about setting these configuration options.

answered
3

Well it works with:

PersistentSessions = true

with a capital P :-)

answered