
Session Management – Architecting State Data
Most modern business applications have some state or context. This model can be easy to implement in a stand-alone application. However, multi-user applications like web sites can be a challenge when you consider session management. While security is often a hot topic, tracking data correctly can be an issue to itself. We need to build our architecture to handle the ways we pass around such data. Session Management Is More Than Global Values One of the “rookie mistakes” of session management is the use of it as a sort of global bucket. It is not uncommon to see all manner of objects and values shoved into the session. While this approach makes it easier to pass values, it is not... Read more